common.c (c57d5621d2f2dc238f4b9c4d00b2a54187a75445) | common.c (6632d4fdd790965a2e4741a3652a1c365d52ae2e) |
---|---|
1/* 2 * This file contains common code that is intended to be used across 3 * boards so that it's not replicated. 4 * 5 * Copyright (C) 2011 Xilinx 6 * 7 * This software is licensed under the terms of the GNU General Public 8 * License version 2, as published by the Free Software Foundation, and --- 183 unchanged lines hidden (view full) --- 192 193static const char * const zynq_dt_match[] = { 194 "xlnx,zynq-7000", 195 NULL 196}; 197 198DT_MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform") 199 /* 64KB way size, 8-way associativity, parity disabled */ | 1/* 2 * This file contains common code that is intended to be used across 3 * boards so that it's not replicated. 4 * 5 * Copyright (C) 2011 Xilinx 6 * 7 * This software is licensed under the terms of the GNU General Public 8 * License version 2, as published by the Free Software Foundation, and --- 183 unchanged lines hidden (view full) --- 192 193static const char * const zynq_dt_match[] = { 194 "xlnx,zynq-7000", 195 NULL 196}; 197 198DT_MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform") 199 /* 64KB way size, 8-way associativity, parity disabled */ |
200 .l2c_aux_val = 0x00000000, 201 .l2c_aux_mask = 0xffffffff, | 200 .l2c_aux_val = 0x00400000, 201 .l2c_aux_mask = 0xffbfffff, |
202 .smp = smp_ops(zynq_smp_ops), 203 .map_io = zynq_map_io, 204 .init_irq = zynq_irq_init, 205 .init_machine = zynq_init_machine, 206 .init_late = zynq_init_late, 207 .init_time = zynq_timer_init, 208 .dt_compat = zynq_dt_match, 209 .reserve = zynq_memory_init, 210MACHINE_END | 202 .smp = smp_ops(zynq_smp_ops), 203 .map_io = zynq_map_io, 204 .init_irq = zynq_irq_init, 205 .init_machine = zynq_init_machine, 206 .init_late = zynq_init_late, 207 .init_time = zynq_timer_init, 208 .dt_compat = zynq_dt_match, 209 .reserve = zynq_memory_init, 210MACHINE_END |