blob: 976402761ec27a12ecc276d893418b174fb722ba [file] [log] [blame]
Konstantin Porotchkin62a76462018-02-26 15:51:11 +02001Marvell CCU address decoding bindings
2=====================================
3
4CCU configration driver (1st stage address translation) for Marvell Armada 8K and 8K+ SoCs.
5
6The CCU node includes a description of the address decoding configuration.
7
8Mandatory functions:
9 - marvell_get_ccu_memory_map
10 return the CCU windows configuration and the number of windows
11 of the specific AP.
12
13Mandatory structures:
14 ccu_memory_map - Array that includes the configuration of the windows
15 every window/entry is a struct which has 3 parameters:
16 - Base address of the window
17 - Size of the window
18 - Target-ID of the window
19
20Example:
21 struct addr_map_win ccu_memory_map[] = {
22 {0x00000000f2000000, 0x00000000e000000, IO_0_TID}, /* IO window */
23 };