1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * arch/xtensa/platform/xtavnet/setup.c
8 * Authors: Chris Zankel <chris@zankel.net>
9 * Joe Taylor <joe@tensilica.com>
11 * Copyright 2001 - 2006 Tensilica Inc.
13 #include <linux/stddef.h>
14 #include <linux/kernel.h>
15 #include <linux/init.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>
25 #include <linux/clk-provider.h>
26 #include <linux/of_address.h>
27 #include <linux/slab.h>
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>
36 void platform_halt(void)
38 lcd_disp_at_pos(" HALT ", 0);
44 void platform_power_off(void)
46 lcd_disp_at_pos("POWEROFF", 0);
52 void platform_restart(void)
54 /* Flush and reset the mmu, simulate a processor reset, and
55 * jump to the reset vector. */
57 /* control never gets here */
60 #ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
62 void __init
platform_calibrate_ccount(void)
64 ccount_freq
= *(long *)XTFPGA_CLKFRQ_VADDR
;
71 static void __init
xtfpga_clk_setup(struct device_node
*np
)
73 void __iomem
*base
= of_iomap(np
, 0);
78 pr_err("%pOFn: invalid address\n", np
);
82 freq
= __raw_readl(base
);
84 clk
= clk_register_fixed_rate(NULL
, np
->name
, NULL
, 0, freq
);
87 pr_err("%pOFn: clk registration failed\n", np
);
91 if (of_clk_add_provider(np
, of_clk_src_simple_get
, clk
)) {
92 pr_err("%pOFn: clk provider registration failed\n", np
);
96 CLK_OF_DECLARE(xtfpga_clk
, "cdns,xtfpga-clock", xtfpga_clk_setup
);
99 static void __init
update_local_mac(struct device_node
*node
)
101 struct property
*newmac
;
105 macaddr
= of_get_property(node
, "local-mac-address", &prop_len
);
106 if (macaddr
== NULL
|| prop_len
!= MAC_LEN
)
109 newmac
= kzalloc(sizeof(*newmac
) + MAC_LEN
, GFP_KERNEL
);
113 newmac
->value
= newmac
+ 1;
114 newmac
->length
= MAC_LEN
;
115 newmac
->name
= kstrdup("local-mac-address", GFP_KERNEL
);
116 if (newmac
->name
== NULL
) {
121 memcpy(newmac
->value
, macaddr
, MAC_LEN
);
122 ((u8
*)newmac
->value
)[5] = (*(u32
*)DIP_SWITCHES_VADDR
) & 0x3f;
123 of_update_property(node
, newmac
);
126 static int __init
machine_setup(void)
128 struct device_node
*eth
= NULL
;
130 if ((eth
= of_find_compatible_node(eth
, NULL
, "opencores,ethoc")))
131 update_local_mac(eth
);
134 arch_initcall(machine_setup
);
138 #include <linux/serial_8250.h>
139 #include <linux/if.h>
140 #include <net/ethoc.h>
141 #include <linux/usb/c67x00.h>
143 /*----------------------------------------------------------------------------
144 * Ethernet -- OpenCores Ethernet MAC (ethoc driver)
147 static struct resource ethoc_res
[] = {
148 [0] = { /* register space */
149 .start
= OETH_REGS_PADDR
,
150 .end
= OETH_REGS_PADDR
+ OETH_REGS_SIZE
- 1,
151 .flags
= IORESOURCE_MEM
,
153 [1] = { /* buffer space */
154 .start
= OETH_SRAMBUFF_PADDR
,
155 .end
= OETH_SRAMBUFF_PADDR
+ OETH_SRAMBUFF_SIZE
- 1,
156 .flags
= IORESOURCE_MEM
,
158 [2] = { /* IRQ number */
159 .start
= XTENSA_PIC_LINUX_IRQ(OETH_IRQ
),
160 .end
= XTENSA_PIC_LINUX_IRQ(OETH_IRQ
),
161 .flags
= IORESOURCE_IRQ
,
165 static struct ethoc_platform_data ethoc_pdata
= {
167 * The MAC address for these boards is 00:50:c2:13:6f:xx.
168 * The last byte (here as zero) is read from the DIP switches on the
171 .hwaddr
= { 0x00, 0x50, 0xc2, 0x13, 0x6f, 0 },
173 .big_endian
= XCHAL_HAVE_BE
,
176 static struct platform_device ethoc_device
= {
179 .num_resources
= ARRAY_SIZE(ethoc_res
),
180 .resource
= ethoc_res
,
182 .platform_data
= ðoc_pdata
,
186 /*----------------------------------------------------------------------------
187 * USB Host/Device -- Cypress CY7C67300
190 static struct resource c67x00_res
[] = {
191 [0] = { /* register space */
192 .start
= C67X00_PADDR
,
193 .end
= C67X00_PADDR
+ C67X00_SIZE
- 1,
194 .flags
= IORESOURCE_MEM
,
196 [1] = { /* IRQ number */
197 .start
= XTENSA_PIC_LINUX_IRQ(C67X00_IRQ
),
198 .end
= XTENSA_PIC_LINUX_IRQ(C67X00_IRQ
),
199 .flags
= IORESOURCE_IRQ
,
203 static struct c67x00_platform_data c67x00_pdata
= {
204 .sie_config
= C67X00_SIE1_HOST
| C67X00_SIE2_UNUSED
,
208 static struct platform_device c67x00_device
= {
211 .num_resources
= ARRAY_SIZE(c67x00_res
),
212 .resource
= c67x00_res
,
214 .platform_data
= &c67x00_pdata
,
218 /*----------------------------------------------------------------------------
222 static struct resource serial_resource
= {
223 .start
= DUART16552_PADDR
,
224 .end
= DUART16552_PADDR
+ 0x1f,
225 .flags
= IORESOURCE_MEM
,
228 static struct plat_serial8250_port serial_platform_data
[] = {
230 .mapbase
= DUART16552_PADDR
,
231 .irq
= XTENSA_PIC_LINUX_IRQ(DUART16552_INTNUM
),
232 .flags
= UPF_BOOT_AUTOCONF
| UPF_SKIP_TEST
|
234 .iotype
= XCHAL_HAVE_BE
? UPIO_MEM32BE
: UPIO_MEM32
,
236 .uartclk
= 0, /* set in xtavnet_init() */
241 static struct platform_device xtavnet_uart
= {
242 .name
= "serial8250",
243 .id
= PLAT8250_DEV_PLATFORM
,
245 .platform_data
= serial_platform_data
,
248 .resource
= &serial_resource
,
251 /* platform devices */
252 static struct platform_device
*platform_devices
[] __initdata
= {
259 static int __init
xtavnet_init(void)
261 /* Ethernet MAC address. */
262 ethoc_pdata
.hwaddr
[5] = *(u32
*)DIP_SWITCHES_VADDR
;
264 /* Clock rate varies among FPGA bitstreams; board specific FPGA register
265 * reports the actual clock rate.
267 serial_platform_data
[0].uartclk
= *(long *)XTFPGA_CLKFRQ_VADDR
;
270 /* register platform devices */
271 platform_add_devices(platform_devices
, ARRAY_SIZE(platform_devices
));
273 /* ETHOC driver is a bit quiet; at least display Ethernet MAC, so user
274 * knows whether they set it correctly on the DIP switches.
276 pr_info("XTFPGA: Ethernet MAC %pM\n", ethoc_pdata
.hwaddr
);
277 ethoc_pdata
.eth_clkfreq
= *(long *)XTFPGA_CLKFRQ_VADDR
;
283 * Register to be done during do_initcalls().
285 arch_initcall(xtavnet_init
);
287 #endif /* CONFIG_OF */