/* * Allwinner A10 bootblock initialization * * Copyright (C) 2013 Google Inc. * Copyright (C) 2013 Alexandru Gagniuc * Subject to the GNU GPL v2, or (at your option) any later version. */ #include #include void bootblock_cpu_init(void); void bootblock_cpu_init(void) { uint32_t sctlr; /* enable dcache */ sctlr = read_sctlr(); sctlr |= SCTLR_C; write_sctlr(sctlr); }