1 // SPDX-License-Identifier: GPL-2.0
2 #include <asm/mach/arch.h>
3 #include <asm/hardware/cache-l2x0.h>
7 static void tango_l2c_write(unsigned long val
, unsigned int reg
)
10 tango_set_l2_control(val
);
13 static const char *const tango_dt_compat
[] = { "sigma,tango4", NULL
};
15 DT_MACHINE_START(TANGO_DT
, "Sigma Tango DT")
16 .dt_compat
= tango_dt_compat
,
18 .l2c_write_sec
= tango_l2c_write
,
19 .init_late
= tango_pm_init
,