1
2
3
4
5
6
7
8
9
10
11
12
13#include <linux/stddef.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/io.h>
17#include <linux/errno.h>
18#include <linux/reboot.h>
19#include <linux/kdev_t.h>
20#include <linux/types.h>
21#include <linux/major.h>
22#include <linux/console.h>
23#include <linux/delay.h>
24#include <linux/of.h>
25#include <linux/clk-provider.h>
26#include <linux/of_address.h>
27#include <linux/slab.h>
28
29#include <asm/timex.h>
30#include <asm/processor.h>
31#include <asm/platform.h>
32#include <asm/bootparam.h>
33#include <platform/lcd.h>
34#include <platform/hardware.h>
35
36void platform_halt(void)
37{
38 lcd_disp_at_pos(" HALT ", 0);
39 local_irq_disable();
40 while (1)
41 cpu_relax();
42}
43
44void platform_power_off(void)
45{
46 lcd_disp_at_pos("POWEROFF", 0);
47 local_irq_disable();
48 while (1)
49 cpu_relax();
50}
51
52void platform_restart(void)
53{
54
55
56 cpu_reset();
57
58}
59
60#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
61
62void __init platform_calibrate_ccount(void)
63{
64 ccount_freq = *(long *)XTFPGA_CLKFRQ_VADDR;
65}
66
67#endif
68
69#ifdef CONFIG_OF
70
71static void __init xtfpga_clk_setup(struct device_node *np)
72{
73 void __iomem *base = of_iomap(np, 0);
74 struct clk *clk;
75 u32 freq;
76
77 if (!base) {
78 pr_err("%pOFn: invalid address\n", np);
79 return;
80 }
81
82 freq = __raw_readl(base);
83 iounmap(base);
84 clk = clk_register_fixed_rate(NULL, np->name, NULL, 0, freq);
85
86 if (IS_ERR(clk)) {
87 pr_err("%pOFn: clk registration failed\n", np);
88 return;
89 }
90
91 if (of_clk_add_provider(np, of_clk_src_simple_get, clk)) {
92 pr_err("%pOFn: clk provider registration failed\n", np);
93 return;
94 }
95}
96CLK_OF_DECLARE(xtfpga_clk, "cdns,xtfpga-clock", xtfpga_clk_setup);
97
98#define MAC_LEN 6
99static void __init update_local_mac(struct device_node *node)
100{
101 struct property *newmac;
102 const u8* macaddr;
103 int prop_len;
104
105 macaddr = of_get_property(node, "local-mac-address", &prop_len);
106 if (macaddr == NULL || prop_len != MAC_LEN)
107 return;
108
109 newmac = kzalloc(sizeof(*newmac) + MAC_LEN, GFP_KERNEL);
110 if (newmac == NULL)
111 return;
112
113 newmac->value = newmac + 1;
114 newmac->length = MAC_LEN;
115 newmac->name = kstrdup("local-mac-address", GFP_KERNEL);
116 if (newmac->name == NULL) {
117 kfree(newmac);
118 return;
119 }
120
121 memcpy(newmac->value, macaddr, MAC_LEN);
122 ((u8*)newmac->value)[5] = (*(u32*)DIP_SWITCHES_VADDR) & 0x3f;
123 of_update_property(node, newmac);
124}
125
126static int __init machine_setup(void)
127{
128 struct device_node *eth = NULL;
129
130 if ((eth = of_find_compatible_node(eth, NULL, "opencores,ethoc")))
131 update_local_mac(eth);
132 return 0;
133}
134arch_initcall(machine_setup);
135
136#else
137
138#include <linux/serial_8250.h>
139#include <linux/if.h>
140#include <net/ethoc.h>
141#include <linux/usb/c67x00.h>
142
143
144
145
146
147static struct resource ethoc_res[] = {
148 [0] = {
149 .start = OETH_REGS_PADDR,
150 .end = OETH_REGS_PADDR + OETH_REGS_SIZE - 1,
151 .flags = IORESOURCE_MEM,
152 },
153 [1] = {
154 .start = OETH_SRAMBUFF_PADDR,
155 .end = OETH_SRAMBUFF_PADDR + OETH_SRAMBUFF_SIZE - 1,
156 .flags = IORESOURCE_MEM,
157 },
158 [2] = {
159 .start = XTENSA_PIC_LINUX_IRQ(OETH_IRQ),
160 .end = XTENSA_PIC_LINUX_IRQ(OETH_IRQ),
161 .flags = IORESOURCE_IRQ,
162 },
163};
164
165static struct ethoc_platform_data ethoc_pdata = {
166
167
168
169
170
171 .hwaddr = { 0x00, 0x50, 0xc2, 0x13, 0x6f, 0 },
172 .phy_id = -1,
173 .big_endian = XCHAL_HAVE_BE,
174};
175
176static struct platform_device ethoc_device = {
177 .name = "ethoc",
178 .id = -1,
179 .num_resources = ARRAY_SIZE(ethoc_res),
180 .resource = ethoc_res,
181 .dev = {
182 .platform_data = ðoc_pdata,
183 },
184};
185
186
187
188
189
190static struct resource c67x00_res[] = {
191 [0] = {
192 .start = C67X00_PADDR,
193 .end = C67X00_PADDR + C67X00_SIZE - 1,
194 .flags = IORESOURCE_MEM,
195 },
196 [1] = {
197 .start = XTENSA_PIC_LINUX_IRQ(C67X00_IRQ),
198 .end = XTENSA_PIC_LINUX_IRQ(C67X00_IRQ),
199 .flags = IORESOURCE_IRQ,
200 },
201};
202
203static struct c67x00_platform_data c67x00_pdata = {
204 .sie_config = C67X00_SIE1_HOST | C67X00_SIE2_UNUSED,
205 .hpi_regstep = 4,
206};
207
208static struct platform_device c67x00_device = {
209 .name = "c67x00",
210 .id = -1,
211 .num_resources = ARRAY_SIZE(c67x00_res),
212 .resource = c67x00_res,
213 .dev = {
214 .platform_data = &c67x00_pdata,
215 },
216};
217
218
219
220
221
222static struct resource serial_resource = {
223 .start = DUART16552_PADDR,
224 .end = DUART16552_PADDR + 0x1f,
225 .flags = IORESOURCE_MEM,
226};
227
228static struct plat_serial8250_port serial_platform_data[] = {
229 [0] = {
230 .mapbase = DUART16552_PADDR,
231 .irq = XTENSA_PIC_LINUX_IRQ(DUART16552_INTNUM),
232 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST |
233 UPF_IOREMAP,
234 .iotype = XCHAL_HAVE_BE ? UPIO_MEM32BE : UPIO_MEM32,
235 .regshift = 2,
236 .uartclk = 0,
237 },
238 { },
239};
240
241static struct platform_device xtavnet_uart = {
242 .name = "serial8250",
243 .id = PLAT8250_DEV_PLATFORM,
244 .dev = {
245 .platform_data = serial_platform_data,
246 },
247 .num_resources = 1,
248 .resource = &serial_resource,
249};
250
251
252static struct platform_device *platform_devices[] __initdata = {
253 ðoc_device,
254 &c67x00_device,
255 &xtavnet_uart,
256};
257
258
259static int __init xtavnet_init(void)
260{
261
262 ethoc_pdata.hwaddr[5] = *(u32 *)DIP_SWITCHES_VADDR;
263
264
265
266
267 serial_platform_data[0].uartclk = *(long *)XTFPGA_CLKFRQ_VADDR;
268
269
270
271 platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
272
273
274
275
276 pr_info("XTFPGA: Ethernet MAC %pM\n", ethoc_pdata.hwaddr);
277 ethoc_pdata.eth_clkfreq = *(long *)XTFPGA_CLKFRQ_VADDR;
278
279 return 0;
280}
281
282
283
284
285arch_initcall(xtavnet_init);
286
287#endif
288