|
@@ -143,23 +143,16 @@ static int __init cpu8815_mmcsd_init(void)
|
|
}
|
|
}
|
|
device_initcall(cpu8815_mmcsd_init);
|
|
device_initcall(cpu8815_mmcsd_init);
|
|
|
|
|
|
-static void __init cpu8815_init_of(void)
|
|
|
|
-{
|
|
|
|
-#ifdef CONFIG_CACHE_L2X0
|
|
|
|
- /* At full speed latency must be >=2, so 0x249 in low bits */
|
|
|
|
- l2x0_of_init(0x00700249, 0xfe0fefff);
|
|
|
|
-#endif
|
|
|
|
- of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
static const char * cpu8815_board_compat[] = {
|
|
static const char * cpu8815_board_compat[] = {
|
|
"calaosystems,usb-s8815",
|
|
"calaosystems,usb-s8815",
|
|
NULL,
|
|
NULL,
|
|
};
|
|
};
|
|
|
|
|
|
DT_MACHINE_START(NOMADIK_DT, "Nomadik STn8815")
|
|
DT_MACHINE_START(NOMADIK_DT, "Nomadik STn8815")
|
|
|
|
+ /* At full speed latency must be >=2, so 0x249 in low bits */
|
|
|
|
+ .l2c_aux_val = 0x00700249,
|
|
|
|
+ .l2c_aux_mask = 0xfe0fefff,
|
|
.map_io = cpu8815_map_io,
|
|
.map_io = cpu8815_map_io,
|
|
- .init_machine = cpu8815_init_of,
|
|
|
|
.restart = cpu8815_restart,
|
|
.restart = cpu8815_restart,
|
|
.dt_compat = cpu8815_board_compat,
|
|
.dt_compat = cpu8815_board_compat,
|
|
MACHINE_END
|
|
MACHINE_END
|