~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/xtensa/platforms/xtfpga/setup.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-or-later
  2 /*
  3  *
  4  * arch/xtensa/platform/xtavnet/setup.c
  5  *
  6  * ...
  7  *
  8  * Authors:     Chris Zankel <chris@zankel.net>
  9  *              Joe Taylor <joe@tensilica.com>
 10  *
 11  * Copyright 2001 - 2006 Tensilica Inc.
 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 
 36 static int xtfpga_power_off(struct sys_off_data *unused)
 37 {
 38         lcd_disp_at_pos("POWEROFF", 0);
 39         local_irq_disable();
 40         while (1)
 41                 cpu_relax();
 42         return NOTIFY_DONE;
 43 }
 44 
 45 static int xtfpga_restart(struct notifier_block *this,
 46                           unsigned long event, void *ptr)
 47 {
 48         /* Try software reset first. */
 49         WRITE_ONCE(*(u32 *)XTFPGA_SWRST_VADDR, 0xdead);
 50 
 51         /* If software reset did not work, flush and reset the mmu,
 52          * simulate a processor reset, and jump to the reset vector.
 53          */
 54         cpu_reset();
 55 
 56         return NOTIFY_DONE;
 57 }
 58 
 59 static struct notifier_block xtfpga_restart_block = {
 60         .notifier_call = xtfpga_restart,
 61 };
 62 
 63 #ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
 64 
 65 void __init platform_calibrate_ccount(void)
 66 {
 67         ccount_freq = *(long *)XTFPGA_CLKFRQ_VADDR;
 68 }
 69 
 70 #endif
 71 
 72 static void __init xtfpga_register_handlers(void)
 73 {
 74         register_restart_handler(&xtfpga_restart_block);
 75         register_sys_off_handler(SYS_OFF_MODE_POWER_OFF,
 76                                  SYS_OFF_PRIO_DEFAULT,
 77                                  xtfpga_power_off, NULL);
 78 }
 79 
 80 #ifdef CONFIG_USE_OF
 81 
 82 static void __init xtfpga_clk_setup(struct device_node *np)
 83 {
 84         void __iomem *base = of_iomap(np, 0);
 85         struct clk *clk;
 86         u32 freq;
 87 
 88         if (!base) {
 89                 pr_err("%pOFn: invalid address\n", np);
 90                 return;
 91         }
 92 
 93         freq = __raw_readl(base);
 94         iounmap(base);
 95         clk = clk_register_fixed_rate(NULL, np->name, NULL, 0, freq);
 96 
 97         if (IS_ERR(clk)) {
 98                 pr_err("%pOFn: clk registration failed\n", np);
 99                 return;
100         }
101 
102         if (of_clk_add_provider(np, of_clk_src_simple_get, clk)) {
103                 pr_err("%pOFn: clk provider registration failed\n", np);
104                 return;
105         }
106 }
107 CLK_OF_DECLARE(xtfpga_clk, "cdns,xtfpga-clock", xtfpga_clk_setup);
108 
109 #define MAC_LEN 6
110 static void __init update_local_mac(struct device_node *node)
111 {
112         struct property *newmac;
113         const u8* macaddr;
114         int prop_len;
115 
116         macaddr = of_get_property(node, "local-mac-address", &prop_len);
117         if (macaddr == NULL || prop_len != MAC_LEN)
118                 return;
119 
120         newmac = kzalloc(sizeof(*newmac) + MAC_LEN, GFP_KERNEL);
121         if (newmac == NULL)
122                 return;
123 
124         newmac->value = newmac + 1;
125         newmac->length = MAC_LEN;
126         newmac->name = kstrdup("local-mac-address", GFP_KERNEL);
127         if (newmac->name == NULL) {
128                 kfree(newmac);
129                 return;
130         }
131 
132         memcpy(newmac->value, macaddr, MAC_LEN);
133         ((u8*)newmac->value)[5] = (*(u32*)DIP_SWITCHES_VADDR) & 0x3f;
134         of_update_property(node, newmac);
135 }
136 
137 static int __init machine_setup(void)
138 {
139         struct device_node *eth = NULL;
140 
141         if ((eth = of_find_compatible_node(eth, NULL, "opencores,ethoc")))
142                 update_local_mac(eth);
143         of_node_put(eth);
144 
145         xtfpga_register_handlers();
146 
147         return 0;
148 }
149 arch_initcall(machine_setup);
150 
151 #else
152 
153 #include <linux/serial_8250.h>
154 #include <linux/if.h>
155 #include <net/ethoc.h>
156 #include <linux/usb/c67x00.h>
157 
158 /*----------------------------------------------------------------------------
159  *  Ethernet -- OpenCores Ethernet MAC (ethoc driver)
160  */
161 
162 static struct resource ethoc_res[] = {
163         [0] = { /* register space */
164                 .start = OETH_REGS_PADDR,
165                 .end   = OETH_REGS_PADDR + OETH_REGS_SIZE - 1,
166                 .flags = IORESOURCE_MEM,
167         },
168         [1] = { /* buffer space */
169                 .start = OETH_SRAMBUFF_PADDR,
170                 .end   = OETH_SRAMBUFF_PADDR + OETH_SRAMBUFF_SIZE - 1,
171                 .flags = IORESOURCE_MEM,
172         },
173         [2] = { /* IRQ number */
174                 .start = XTENSA_PIC_LINUX_IRQ(OETH_IRQ),
175                 .end   = XTENSA_PIC_LINUX_IRQ(OETH_IRQ),
176                 .flags = IORESOURCE_IRQ,
177         },
178 };
179 
180 static struct ethoc_platform_data ethoc_pdata = {
181         /*
182          * The MAC address for these boards is 00:50:c2:13:6f:xx.
183          * The last byte (here as zero) is read from the DIP switches on the
184          * board.
185          */
186         .hwaddr = { 0x00, 0x50, 0xc2, 0x13, 0x6f, 0 },
187         .phy_id = -1,
188         .big_endian = XCHAL_HAVE_BE,
189 };
190 
191 static struct platform_device ethoc_device = {
192         .name = "ethoc",
193         .id = -1,
194         .num_resources = ARRAY_SIZE(ethoc_res),
195         .resource = ethoc_res,
196         .dev = {
197                 .platform_data = &ethoc_pdata,
198         },
199 };
200 
201 /*----------------------------------------------------------------------------
202  *  USB Host/Device -- Cypress CY7C67300
203  */
204 
205 static struct resource c67x00_res[] = {
206         [0] = { /* register space */
207                 .start = C67X00_PADDR,
208                 .end   = C67X00_PADDR + C67X00_SIZE - 1,
209                 .flags = IORESOURCE_MEM,
210         },
211         [1] = { /* IRQ number */
212                 .start = XTENSA_PIC_LINUX_IRQ(C67X00_IRQ),
213                 .end   = XTENSA_PIC_LINUX_IRQ(C67X00_IRQ),
214                 .flags = IORESOURCE_IRQ,
215         },
216 };
217 
218 static struct c67x00_platform_data c67x00_pdata = {
219         .sie_config = C67X00_SIE1_HOST | C67X00_SIE2_UNUSED,
220         .hpi_regstep = 4,
221 };
222 
223 static struct platform_device c67x00_device = {
224         .name = "c67x00",
225         .id = -1,
226         .num_resources = ARRAY_SIZE(c67x00_res),
227         .resource = c67x00_res,
228         .dev = {
229                 .platform_data = &c67x00_pdata,
230         },
231 };
232 
233 /*----------------------------------------------------------------------------
234  *  UART
235  */
236 
237 static struct resource serial_resource = {
238         .start  = DUART16552_PADDR,
239         .end    = DUART16552_PADDR + 0x1f,
240         .flags  = IORESOURCE_MEM,
241 };
242 
243 static struct plat_serial8250_port serial_platform_data[] = {
244         [0] = {
245                 .mapbase        = DUART16552_PADDR,
246                 .irq            = XTENSA_PIC_LINUX_IRQ(DUART16552_INTNUM),
247                 .flags          = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST |
248                                   UPF_IOREMAP,
249                 .iotype         = XCHAL_HAVE_BE ? UPIO_MEM32BE : UPIO_MEM32,
250                 .regshift       = 2,
251                 .uartclk        = 0,    /* set in xtavnet_init() */
252         },
253         { },
254 };
255 
256 static struct platform_device xtavnet_uart = {
257         .name           = "serial8250",
258         .id             = PLAT8250_DEV_PLATFORM,
259         .dev            = {
260                 .platform_data  = serial_platform_data,
261         },
262         .num_resources  = 1,
263         .resource       = &serial_resource,
264 };
265 
266 /* platform devices */
267 static struct platform_device *platform_devices[] __initdata = {
268         &ethoc_device,
269         &c67x00_device,
270         &xtavnet_uart,
271 };
272 
273 
274 static int __init xtavnet_init(void)
275 {
276         /* Ethernet MAC address.  */
277         ethoc_pdata.hwaddr[5] = *(u32 *)DIP_SWITCHES_VADDR;
278 
279         /* Clock rate varies among FPGA bitstreams; board specific FPGA register
280          * reports the actual clock rate.
281          */
282         serial_platform_data[0].uartclk = *(long *)XTFPGA_CLKFRQ_VADDR;
283 
284 
285         /* register platform devices */
286         platform_add_devices(platform_devices, ARRAY_SIZE(platform_devices));
287 
288         /* ETHOC driver is a bit quiet; at least display Ethernet MAC, so user
289          * knows whether they set it correctly on the DIP switches.
290          */
291         pr_info("XTFPGA: Ethernet MAC %pM\n", ethoc_pdata.hwaddr);
292         ethoc_pdata.eth_clkfreq = *(long *)XTFPGA_CLKFRQ_VADDR;
293 
294         xtfpga_register_handlers();
295 
296         return 0;
297 }
298 
299 /*
300  * Register to be done during do_initcalls().
301  */
302 arch_initcall(xtavnet_init);
303 
304 #endif /* CONFIG_USE_OF */
305 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php