mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
c163af6cb8
TISCI protocol supports for enabling the device either with exclusive permissions for the requesting host or with sharing across the hosts. There are certain devices which are exclusive to Linux context and there are certain devices that are shared across different host contexts. So add support for getting this information from DT by increasing the power-domain cells to 2. Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
9 lines
227 B
C
9 lines
227 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __DT_BINDINGS_TI_SCI_PM_DOMAIN_H
|
|
#define __DT_BINDINGS_TI_SCI_PM_DOMAIN_H
|
|
|
|
#define TI_SCI_PD_EXCLUSIVE 1
|
|
#define TI_SCI_PD_SHARED 0
|
|
|
|
#endif /* __DT_BINDINGS_TI_SCI_PM_DOMAIN_H */
|