xref: /rk3399_ARM-atf/plat/rockchip/rk3399/drivers/pmu/m0_ctl.h (revision 977001aa877f90dfbc8033f8b266b7488c442038)
1*977001aaSXing Zheng /*
2*977001aaSXing Zheng  * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3*977001aaSXing Zheng  *
4*977001aaSXing Zheng  * Redistribution and use in source and binary forms, with or without
5*977001aaSXing Zheng  * modification, are permitted provided that the following conditions are met:
6*977001aaSXing Zheng  *
7*977001aaSXing Zheng  * Redistributions of source code must retain the above copyright notice, this
8*977001aaSXing Zheng  * list of conditions and the following disclaimer.
9*977001aaSXing Zheng  *
10*977001aaSXing Zheng  * Redistributions in binary form must reproduce the above copyright notice,
11*977001aaSXing Zheng  * this list of conditions and the following disclaimer in the documentation
12*977001aaSXing Zheng  * and/or other materials provided with the distribution.
13*977001aaSXing Zheng  *
14*977001aaSXing Zheng  * Neither the name of ARM nor the names of its contributors may be used
15*977001aaSXing Zheng  * to endorse or promote products derived from this software without specific
16*977001aaSXing Zheng  * prior written permission.
17*977001aaSXing Zheng  *
18*977001aaSXing Zheng  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19*977001aaSXing Zheng  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20*977001aaSXing Zheng  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21*977001aaSXing Zheng  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22*977001aaSXing Zheng  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23*977001aaSXing Zheng  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24*977001aaSXing Zheng  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25*977001aaSXing Zheng  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26*977001aaSXing Zheng  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27*977001aaSXing Zheng  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28*977001aaSXing Zheng  * POSSIBILITY OF SUCH DAMAGE.
29*977001aaSXing Zheng  */
30*977001aaSXing Zheng 
31*977001aaSXing Zheng #ifndef __M0_CTL_H__
32*977001aaSXing Zheng #define __M0_CTL_H__
33*977001aaSXing Zheng 
34*977001aaSXing Zheng #include <m0_param.h>
35*977001aaSXing Zheng 
36*977001aaSXing Zheng #define M0_BINCODE_BASE 	((uintptr_t)rk3399m0_bin)
37*977001aaSXing Zheng #define M0_PARAM_ADDR		(M0_BINCODE_BASE + PARAM_ADDR)
38*977001aaSXing Zheng 
39*977001aaSXing Zheng /* pmu_fw.c */
40*977001aaSXing Zheng extern char rk3399m0_bin[];
41*977001aaSXing Zheng extern char rk3399m0_bin_end[];
42*977001aaSXing Zheng 
43*977001aaSXing Zheng extern void m0_init(void);
44*977001aaSXing Zheng extern void m0_start(void);
45*977001aaSXing Zheng extern void m0_stop(void);
46*977001aaSXing Zheng extern void m0_wait_done(void);
47*977001aaSXing Zheng 
48*977001aaSXing Zheng #endif /* __M0_CTL_H__ */
49