common.c (ee1a8d402e7e204d57fb108aa40003b6d1633036) common.c (514a590847ff42dc00ba6c6165736128ad7730a8)
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

--- 87 unchanged lines hidden (view full) ---

96 zynq_slcr_system_reset();
97}
98
99static const char * const zynq_dt_match[] = {
100 "xlnx,zynq-7000",
101 NULL
102};
103
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

--- 87 unchanged lines hidden (view full) ---

96 zynq_slcr_system_reset();
97}
98
99static const char * const zynq_dt_match[] = {
100 "xlnx,zynq-7000",
101 NULL
102};
103
104MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform")
104DT_MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform")
105 .smp = smp_ops(zynq_smp_ops),
106 .map_io = zynq_map_io,
107 .init_machine = zynq_init_machine,
108 .init_time = zynq_timer_init,
109 .dt_compat = zynq_dt_match,
110 .restart = zynq_system_reset,
111MACHINE_END
105 .smp = smp_ops(zynq_smp_ops),
106 .map_io = zynq_map_io,
107 .init_machine = zynq_init_machine,
108 .init_time = zynq_timer_init,
109 .dt_compat = zynq_dt_match,
110 .restart = zynq_system_reset,
111MACHINE_END