Merge tag 'iwlwifi-next-for-kalle-2016-07-11' of git://git.kernel.org/pub/scm/linux...
[cascardo/linux.git] / Documentation / devicetree / bindings / soc / rockchip / grf.txt
1 * Rockchip General Register Files (GRF)
2
3 The general register file will be used to do static set by software, which
4 is composed of many registers for system control.
5
6 From RK3368 SoCs, the GRF is divided into two sections,
7 - GRF, used for general non-secure system,
8 - PMUGRF, used for always on system
9
10 Required Properties:
11
12 - compatible: GRF should be one of the followings
13    - "rockchip,rk3066-grf", "syscon": for rk3066
14    - "rockchip,rk3188-grf", "syscon": for rk3188
15    - "rockchip,rk3228-grf", "syscon": for rk3228
16    - "rockchip,rk3288-grf", "syscon": for rk3288
17    - "rockchip,rk3368-grf", "syscon": for rk3368
18    - "rockchip,rk3399-grf", "syscon": for rk3399
19 - compatible: PMUGRF should be one of the followings
20    - "rockchip,rk3368-pmugrf", "syscon": for rk3368
21    - "rockchip,rk3399-pmugrf", "syscon": for rk3399
22 - reg: physical base address of the controller and length of memory mapped
23   region.
24
25 Example: GRF and PMUGRF of RK3399 SoCs
26
27         pmugrf: syscon@ff320000 {
28                 compatible = "rockchip,rk3399-pmugrf", "syscon";
29                 reg = <0x0 0xff320000 0x0 0x1000>;
30         };
31
32         grf: syscon@ff770000 {
33                 compatible = "rockchip,rk3399-grf", "syscon";
34                 reg = <0x0 0xff770000 0x0 0x10000>;
35         };