xref: /rk3399_rockchip-uboot/arch/arm/mach-bcm283x/include/mach/msg.h (revision 70997d88c40b4d74c4eac80c85f3a2676aa15d82)
1 /*
2  * (C) Copyright 2012,2015 Stephen Warren
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 
7 #ifndef _BCM2835_MSG_H
8 #define _BCM2835_MSG_H
9 
10 /**
11  * bcm2835_power_on_module() - power on an SoC module
12  *
13  * @module: ID of module to power on (BCM2835_MBOX_POWER_DEVID_...)
14  * @return 0 if OK, -EIO on error
15  */
16 int bcm2835_power_on_module(u32 module);
17 
18 #endif
19