mpcsa_machdep.c revision 1.1.22.1 1 1.1.22.1 simonb /* $Id: mpcsa_machdep.c,v 1.1.22.1 2008/07/03 18:37:52 simonb Exp $ */
2 1.1.22.1 simonb /* $NetBSD: mpcsa_machdep.c,v 1.1.22.1 2008/07/03 18:37:52 simonb Exp $ */
3 1.1.22.1 simonb
4 1.1.22.1 simonb /*
5 1.1.22.1 simonb * Copyright (c) 2007 Embedtronics Oy
6 1.1.22.1 simonb * Based on tsarm_machdep.c
7 1.1.22.1 simonb *
8 1.1.22.1 simonb * Copyright (c) 2001, 2002, 2003 Wasabi Systems, Inc.
9 1.1.22.1 simonb * All rights reserved.
10 1.1.22.1 simonb *
11 1.1.22.1 simonb * Based on code written by Jason R. Thorpe and Steve C. Woodford for
12 1.1.22.1 simonb * Wasabi Systems, Inc.
13 1.1.22.1 simonb *
14 1.1.22.1 simonb * Redistribution and use in source and binary forms, with or without
15 1.1.22.1 simonb * modification, are permitted provided that the following conditions
16 1.1.22.1 simonb * are met:
17 1.1.22.1 simonb * 1. Redistributions of source code must retain the above copyright
18 1.1.22.1 simonb * notice, this list of conditions and the following disclaimer.
19 1.1.22.1 simonb * 2. Redistributions in binary form must reproduce the above copyright
20 1.1.22.1 simonb * notice, this list of conditions and the following disclaimer in the
21 1.1.22.1 simonb * documentation and/or other materials provided with the distribution.
22 1.1.22.1 simonb * 3. All advertising materials mentioning features or use of this software
23 1.1.22.1 simonb * must display the following acknowledgement:
24 1.1.22.1 simonb * This product includes software developed for the NetBSD Project by
25 1.1.22.1 simonb * Wasabi Systems, Inc.
26 1.1.22.1 simonb * 4. The name of Wasabi Systems, Inc. may not be used to endorse
27 1.1.22.1 simonb * or promote products derived from this software without specific prior
28 1.1.22.1 simonb * written permission.
29 1.1.22.1 simonb *
30 1.1.22.1 simonb * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
31 1.1.22.1 simonb * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
32 1.1.22.1 simonb * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
33 1.1.22.1 simonb * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
34 1.1.22.1 simonb * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
35 1.1.22.1 simonb * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
36 1.1.22.1 simonb * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
37 1.1.22.1 simonb * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
38 1.1.22.1 simonb * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
39 1.1.22.1 simonb * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 1.1.22.1 simonb * POSSIBILITY OF SUCH DAMAGE.
41 1.1.22.1 simonb */
42 1.1.22.1 simonb
43 1.1.22.1 simonb /*
44 1.1.22.1 simonb * Copyright (c) 1997,1998 Mark Brinicombe.
45 1.1.22.1 simonb * Copyright (c) 1997,1998 Causality Limited.
46 1.1.22.1 simonb * All rights reserved.
47 1.1.22.1 simonb *
48 1.1.22.1 simonb * Redistribution and use in source and binary forms, with or without
49 1.1.22.1 simonb * modification, are permitted provided that the following conditions
50 1.1.22.1 simonb * are met:
51 1.1.22.1 simonb * 1. Redistributions of source code must retain the above copyright
52 1.1.22.1 simonb * notice, this list of conditions and the following disclaimer.
53 1.1.22.1 simonb * 2. Redistributions in binary form must reproduce the above copyright
54 1.1.22.1 simonb * notice, this list of conditions and the following disclaimer in the
55 1.1.22.1 simonb * documentation and/or other materials provided with the distribution.
56 1.1.22.1 simonb * 3. All advertising materials mentioning features or use of this software
57 1.1.22.1 simonb * must display the following acknowledgement:
58 1.1.22.1 simonb * This product includes software developed by Mark Brinicombe
59 1.1.22.1 simonb * for the NetBSD Project.
60 1.1.22.1 simonb * 4. The name of the company nor the name of the author may be used to
61 1.1.22.1 simonb * endorse or promote products derived from this software without specific
62 1.1.22.1 simonb * prior written permission.
63 1.1.22.1 simonb *
64 1.1.22.1 simonb * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
65 1.1.22.1 simonb * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
66 1.1.22.1 simonb * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
67 1.1.22.1 simonb * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
68 1.1.22.1 simonb * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
69 1.1.22.1 simonb * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
70 1.1.22.1 simonb * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
71 1.1.22.1 simonb * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
72 1.1.22.1 simonb * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
73 1.1.22.1 simonb * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
74 1.1.22.1 simonb * SUCH DAMAGE.
75 1.1.22.1 simonb *
76 1.1.22.1 simonb * Machine dependant functions for kernel setup for Iyonix.
77 1.1.22.1 simonb */
78 1.1.22.1 simonb
79 1.1.22.1 simonb #include <sys/cdefs.h>
80 1.1.22.1 simonb __KERNEL_RCSID(0, "$NetBSD: mpcsa_machdep.c,v 1.1.22.1 2008/07/03 18:37:52 simonb Exp $");
81 1.1.22.1 simonb
82 1.1.22.1 simonb #include "opt_ddb.h"
83 1.1.22.1 simonb #include "opt_kgdb.h"
84 1.1.22.1 simonb #include "opt_pmap_debug.h"
85 1.1.22.1 simonb
86 1.1.22.1 simonb #include <sys/param.h>
87 1.1.22.1 simonb #include <sys/device.h>
88 1.1.22.1 simonb #include <sys/systm.h>
89 1.1.22.1 simonb #include <sys/kernel.h>
90 1.1.22.1 simonb #include <sys/exec.h>
91 1.1.22.1 simonb #include <sys/proc.h>
92 1.1.22.1 simonb #include <sys/msgbuf.h>
93 1.1.22.1 simonb #include <sys/reboot.h>
94 1.1.22.1 simonb #include <sys/termios.h>
95 1.1.22.1 simonb #include <sys/ksyms.h>
96 1.1.22.1 simonb
97 1.1.22.1 simonb #include <uvm/uvm_extern.h>
98 1.1.22.1 simonb
99 1.1.22.1 simonb #include <dev/cons.h>
100 1.1.22.1 simonb
101 1.1.22.1 simonb #include <machine/db_machdep.h>
102 1.1.22.1 simonb #include <ddb/db_sym.h>
103 1.1.22.1 simonb #include <ddb/db_extern.h>
104 1.1.22.1 simonb
105 1.1.22.1 simonb #define DRAM_BLOCKS 1
106 1.1.22.1 simonb #include <machine/bootconfig.h>
107 1.1.22.1 simonb #include <machine/bus.h>
108 1.1.22.1 simonb #include <machine/cpu.h>
109 1.1.22.1 simonb #include <machine/frame.h>
110 1.1.22.1 simonb #include <arm/undefined.h>
111 1.1.22.1 simonb
112 1.1.22.1 simonb #include <arm/arm32/machdep.h>
113 1.1.22.1 simonb
114 1.1.22.1 simonb #include <arm/at91/at91reg.h>
115 1.1.22.1 simonb #include <arm/at91/at91var.h>
116 1.1.22.1 simonb
117 1.1.22.1 simonb #include <dev/ic/comreg.h>
118 1.1.22.1 simonb #include <dev/ic/comvar.h>
119 1.1.22.1 simonb
120 1.1.22.1 simonb #include <machine/autoconf.h>
121 1.1.22.1 simonb
122 1.1.22.1 simonb #include "seeprom.h"
123 1.1.22.1 simonb #if NSEEPROM > 0
124 1.1.22.1 simonb #include <net/if.h>
125 1.1.22.1 simonb #include <net/if_ether.h>
126 1.1.22.1 simonb #include <dev/i2c/i2cvar.h>
127 1.1.22.1 simonb #include <dev/i2c/at24cxxvar.h>
128 1.1.22.1 simonb #endif
129 1.1.22.1 simonb #include <arm/at91/at91twivar.h>
130 1.1.22.1 simonb
131 1.1.22.1 simonb #if TODO
132 1.1.22.1 simonb #include "epcom.h"
133 1.1.22.1 simonb #if NEPCOM > 0
134 1.1.22.1 simonb #include <arm/ep93xx/epcomvar.h>
135 1.1.22.1 simonb #endif
136 1.1.22.1 simonb
137 1.1.22.1 simonb #include "isa.h"
138 1.1.22.1 simonb #if NISA > 0
139 1.1.22.1 simonb #include <dev/isa/isareg.h>
140 1.1.22.1 simonb #include <dev/isa/isavar.h>
141 1.1.22.1 simonb #endif
142 1.1.22.1 simonb
143 1.1.22.1 simonb #include <machine/isa_machdep.h>
144 1.1.22.1 simonb
145 1.1.22.1 simonb #include <evbarm/mpcsa/mpcsareg.h>
146 1.1.22.1 simonb #endif // TODO
147 1.1.22.1 simonb
148 1.1.22.1 simonb #include <arm/at91/at91rm9200reg.h>
149 1.1.22.1 simonb #include <arm/at91/at91rm9200busvar.h>
150 1.1.22.1 simonb
151 1.1.22.1 simonb #include "opt_ipkdb.h"
152 1.1.22.1 simonb #include "ksyms.h"
153 1.1.22.1 simonb
154 1.1.22.1 simonb #include <arm/at91/at91busvar.h>
155 1.1.22.1 simonb #include <arm/at91/at91pdcreg.h>
156 1.1.22.1 simonb #include <arm/at91/at91dbgureg.h>
157 1.1.22.1 simonb #include <arm/at91/at91reg.h>
158 1.1.22.1 simonb #include <arm/at91/at91streg.h>
159 1.1.22.1 simonb
160 1.1.22.1 simonb /*
161 1.1.22.1 simonb * Address to call from cpu_reset() to reset the machine.
162 1.1.22.1 simonb * This is machine architecture dependant as it varies depending
163 1.1.22.1 simonb * on where the ROM appears when you turn the MMU off.
164 1.1.22.1 simonb */
165 1.1.22.1 simonb
166 1.1.22.1 simonb u_int cpu_reset_address = 0x00000000;
167 1.1.22.1 simonb
168 1.1.22.1 simonb
169 1.1.22.1 simonb /* boot configuration: */
170 1.1.22.1 simonb BootConfig bootconfig; /* Boot config storage */
171 1.1.22.1 simonb char *boot_args = NULL;
172 1.1.22.1 simonb char *boot_file = NULL;
173 1.1.22.1 simonb
174 1.1.22.1 simonb /* hmmm */
175 1.1.22.1 simonb static struct arm32_dma_range mpcsa_dma_ranges[4];
176 1.1.22.1 simonb static struct at91bus_machdep mpcsabus;
177 1.1.22.1 simonb static at91bus_tag_t old_at91bus_tag;
178 1.1.22.1 simonb
179 1.1.22.1 simonb /* Prototypes */
180 1.1.22.1 simonb static void mpcsa_device_register(device_t dev, void *aux);
181 1.1.22.1 simonb static void mpcsabus_init(struct at91bus_clocks *);
182 1.1.22.1 simonb static void mpcsabus_peripheral_clock(int pid, int enable);
183 1.1.22.1 simonb static uint32_t mpcsabus_gpio_mask(int pid);
184 1.1.22.1 simonb
185 1.1.22.1 simonb
186 1.1.22.1 simonb /*
187 1.1.22.1 simonb * void cpu_reboot(int howto, char *bootstr)
188 1.1.22.1 simonb *
189 1.1.22.1 simonb * Reboots the system
190 1.1.22.1 simonb *
191 1.1.22.1 simonb * Deal with any syncing, unmounting, dumping and shutdown hooks,
192 1.1.22.1 simonb * then reset the CPU.
193 1.1.22.1 simonb */
194 1.1.22.1 simonb void
195 1.1.22.1 simonb cpu_reboot(int howto, char *bootstr)
196 1.1.22.1 simonb {
197 1.1.22.1 simonb
198 1.1.22.1 simonb /*
199 1.1.22.1 simonb * If we are still cold then hit the air brakes
200 1.1.22.1 simonb * and crash to earth fast
201 1.1.22.1 simonb */
202 1.1.22.1 simonb if (cold) {
203 1.1.22.1 simonb doshutdownhooks();
204 1.1.22.1 simonb printf("\r\n");
205 1.1.22.1 simonb printf("The operating system has halted.\r\n");
206 1.1.22.1 simonb printf("Please press any key to reboot.\r\n");
207 1.1.22.1 simonb cngetc();
208 1.1.22.1 simonb printf("\r\nrebooting...\r\n");
209 1.1.22.1 simonb goto reset;
210 1.1.22.1 simonb }
211 1.1.22.1 simonb
212 1.1.22.1 simonb /* Disable console buffering */
213 1.1.22.1 simonb
214 1.1.22.1 simonb /*
215 1.1.22.1 simonb * If RB_NOSYNC was not specified sync the discs.
216 1.1.22.1 simonb * Note: Unless cold is set to 1 here, syslogd will die during the
217 1.1.22.1 simonb * unmount. It looks like syslogd is getting woken up only to find
218 1.1.22.1 simonb * that it cannot page part of the binary in as the filesystem has
219 1.1.22.1 simonb * been unmounted.
220 1.1.22.1 simonb */
221 1.1.22.1 simonb if (!(howto & RB_NOSYNC))
222 1.1.22.1 simonb bootsync();
223 1.1.22.1 simonb
224 1.1.22.1 simonb /* Say NO to interrupts */
225 1.1.22.1 simonb splhigh();
226 1.1.22.1 simonb
227 1.1.22.1 simonb /* Do a dump if requested. */
228 1.1.22.1 simonb if ((howto & (RB_DUMP | RB_HALT)) == RB_DUMP)
229 1.1.22.1 simonb dumpsys();
230 1.1.22.1 simonb
231 1.1.22.1 simonb /* Run any shutdown hooks */
232 1.1.22.1 simonb doshutdownhooks();
233 1.1.22.1 simonb
234 1.1.22.1 simonb /* Make sure IRQ's are disabled */
235 1.1.22.1 simonb IRQdisable;
236 1.1.22.1 simonb
237 1.1.22.1 simonb if (howto & RB_HALT) {
238 1.1.22.1 simonb printf("\r\n");
239 1.1.22.1 simonb printf("The operating system has halted.\r\n");
240 1.1.22.1 simonb printf("Please press any key to reboot.\r\n");
241 1.1.22.1 simonb cngetc();
242 1.1.22.1 simonb }
243 1.1.22.1 simonb
244 1.1.22.1 simonb printf("\r\nrebooting...\r\n");
245 1.1.22.1 simonb reset:
246 1.1.22.1 simonb /*
247 1.1.22.1 simonb * Make really really sure that all interrupts are disabled,
248 1.1.22.1 simonb * and poke the Internal Bus and Peripheral Bus reset lines.
249 1.1.22.1 simonb */
250 1.1.22.1 simonb (void) disable_interrupts(I32_bit|F32_bit);
251 1.1.22.1 simonb STREG(ST_WDMR) = ST_WDMR_EXTEN | ST_WDMR_RSTEN | 1;
252 1.1.22.1 simonb STREG(ST_CR) = ST_CR_WDRST;
253 1.1.22.1 simonb for (;;);
254 1.1.22.1 simonb }
255 1.1.22.1 simonb
256 1.1.22.1 simonb /*
257 1.1.22.1 simonb * u_int initarm(...)
258 1.1.22.1 simonb *
259 1.1.22.1 simonb * Initial entry point on startup. This gets called before main() is
260 1.1.22.1 simonb * entered.
261 1.1.22.1 simonb * It should be responsible for setting up everything that must be
262 1.1.22.1 simonb * in place when main is called.
263 1.1.22.1 simonb * This includes
264 1.1.22.1 simonb * Taking a copy of the boot configuration structure.
265 1.1.22.1 simonb * Initialising the physical console so characters can be printed.
266 1.1.22.1 simonb * Setting up page tables for the kernel
267 1.1.22.1 simonb * Initialising interrupt controllers to a sane default state
268 1.1.22.1 simonb */
269 1.1.22.1 simonb u_int
270 1.1.22.1 simonb initarm(void *arg)
271 1.1.22.1 simonb {
272 1.1.22.1 simonb u_int ret;
273 1.1.22.1 simonb /*
274 1.1.22.1 simonb * basic AT91 initialization:
275 1.1.22.1 simonb */
276 1.1.22.1 simonb if (at91bus_init())
277 1.1.22.1 simonb panic("%s: at91bus_init() failed", __FUNCTION__);
278 1.1.22.1 simonb
279 1.1.22.1 simonb if (AT91_CHIP_ID() == AT91RM9200_CHIP_ID) {
280 1.1.22.1 simonb memcpy(&mpcsabus, at91bus_tag, sizeof(mpcsabus));
281 1.1.22.1 simonb mpcsabus.init = mpcsabus_init;
282 1.1.22.1 simonb mpcsabus.peripheral_clock = mpcsabus_peripheral_clock;
283 1.1.22.1 simonb mpcsabus.gpio_mask = mpcsabus_gpio_mask;
284 1.1.22.1 simonb old_at91bus_tag = at91bus_tag;
285 1.1.22.1 simonb at91bus_tag = &mpcsabus;
286 1.1.22.1 simonb }
287 1.1.22.1 simonb
288 1.1.22.1 simonb /* Fake bootconfig structure for the benefit of pmap.c */
289 1.1.22.1 simonb /* XXX must make the memory description h/w independent */
290 1.1.22.1 simonb bootconfig.dramblocks = 1;
291 1.1.22.1 simonb bootconfig.dram[0].address = 0x20000000UL;
292 1.1.22.1 simonb bootconfig.dram[0].pages = 0x04000000UL / PAGE_SIZE;
293 1.1.22.1 simonb ret = at91bus_setup(&bootconfig);
294 1.1.22.1 simonb
295 1.1.22.1 simonb if (AT91_CHIP_ID() != AT91RM9200_CHIP_ID)
296 1.1.22.1 simonb panic("%s: processor is not AT91RM9200", __FUNCTION__);
297 1.1.22.1 simonb
298 1.1.22.1 simonb /* we've a specific device_register routine */
299 1.1.22.1 simonb evbarm_device_register = mpcsa_device_register;
300 1.1.22.1 simonb
301 1.1.22.1 simonb /* We return the new stack pointer address */
302 1.1.22.1 simonb return ret;
303 1.1.22.1 simonb }
304 1.1.22.1 simonb
305 1.1.22.1 simonb
306 1.1.22.1 simonb bus_dma_tag_t
307 1.1.22.1 simonb at91_bus_dma_init(struct arm32_bus_dma_tag *dma_tag_template)
308 1.1.22.1 simonb {
309 1.1.22.1 simonb int i;
310 1.1.22.1 simonb struct arm32_bus_dma_tag *dmat;
311 1.1.22.1 simonb
312 1.1.22.1 simonb for (i = 0; i < bootconfig.dramblocks; i++) {
313 1.1.22.1 simonb mpcsa_dma_ranges[i].dr_sysbase = bootconfig.dram[i].address;
314 1.1.22.1 simonb mpcsa_dma_ranges[i].dr_busbase = bootconfig.dram[i].address;
315 1.1.22.1 simonb mpcsa_dma_ranges[i].dr_len = bootconfig.dram[i].pages *
316 1.1.22.1 simonb PAGE_SIZE;
317 1.1.22.1 simonb }
318 1.1.22.1 simonb
319 1.1.22.1 simonb dmat = dma_tag_template;
320 1.1.22.1 simonb
321 1.1.22.1 simonb dmat->_ranges = mpcsa_dma_ranges;
322 1.1.22.1 simonb dmat->_nranges = bootconfig.dramblocks;
323 1.1.22.1 simonb
324 1.1.22.1 simonb return dmat;
325 1.1.22.1 simonb }
326 1.1.22.1 simonb
327 1.1.22.1 simonb void mpcsabus_init(struct at91bus_clocks *clocks)
328 1.1.22.1 simonb {
329 1.1.22.1 simonb (*old_at91bus_tag->init)(clocks);
330 1.1.22.1 simonb }
331 1.1.22.1 simonb
332 1.1.22.1 simonb uint32_t mpcsabus_gpio_mask(int pid)
333 1.1.22.1 simonb {
334 1.1.22.1 simonb switch (pid) {
335 1.1.22.1 simonb case PID_PIOA: return ~0x00000300U;
336 1.1.22.1 simonb case PID_PIOB: return ~0x0000783FU;
337 1.1.22.1 simonb case PID_PIOC: return ~0x00000000U;
338 1.1.22.1 simonb case PID_PIOD: return ~0x0003F000U;
339 1.1.22.1 simonb default: return ~0x00000000U;
340 1.1.22.1 simonb }
341 1.1.22.1 simonb }
342 1.1.22.1 simonb
343 1.1.22.1 simonb void mpcsabus_peripheral_clock(int pid, int enable)
344 1.1.22.1 simonb {
345 1.1.22.1 simonb switch (pid) {
346 1.1.22.1 simonb case PID_TWI:
347 1.1.22.1 simonb if (enable) {
348 1.1.22.1 simonb PIOA_WRITE(PIO_ASR, 0x06000000); // assign to peripheral A
349 1.1.22.1 simonb PIOA_WRITE(PIO_PDR, 0x06000000); // assign to peripherals
350 1.1.22.1 simonb PIOA_WRITE(PIO_MDER, 0x06000000); // I2C pins in open-drain mode
351 1.1.22.1 simonb }
352 1.1.22.1 simonb break;
353 1.1.22.1 simonb
354 1.1.22.1 simonb case PID_SPI:
355 1.1.22.1 simonb if (enable) {
356 1.1.22.1 simonb PIOA_WRITE(PIO_ASR, 0x00000007); // assign to peripheral A
357 1.1.22.1 simonb PIOA_WRITE(PIO_PDR, 0x00000007); // assign to peripherals
358 1.1.22.1 simonb }
359 1.1.22.1 simonb break;
360 1.1.22.1 simonb }
361 1.1.22.1 simonb (*old_at91bus_tag->peripheral_clock)(pid, enable);
362 1.1.22.1 simonb }
363 1.1.22.1 simonb
364 1.1.22.1 simonb
365 1.1.22.1 simonb static void mpcsa_device_register(device_t dev, void *aux)
366 1.1.22.1 simonb {
367 1.1.22.1 simonb static uint8_t eth_addr[ETHER_ADDR_LEN];
368 1.1.22.1 simonb
369 1.1.22.1 simonb if (device_is_a(dev, "at91emac")) {
370 1.1.22.1 simonb cfdriver_t cd = config_cfdriver_lookup("at91twi");
371 1.1.22.1 simonb device_t twi_dev = 0;
372 1.1.22.1 simonb i2c_tag_t i2c = 0;
373 1.1.22.1 simonb if (cd && (twi_dev = device_lookup(cd, 0)) != NULL) {
374 1.1.22.1 simonb struct at91twi_softc *sc = (struct at91twi_softc *)twi_dev;
375 1.1.22.1 simonb i2c = &sc->sc_i2c;
376 1.1.22.1 simonb }
377 1.1.22.1 simonb if (i2c && seeprom_bootstrap_read(i2c, 0x50, 0x00, 4096,
378 1.1.22.1 simonb eth_addr, ETHER_ADDR_LEN) == 0) {
379 1.1.22.1 simonb prop_data_t pd = prop_data_create_data_nocopy(
380 1.1.22.1 simonb eth_addr, ETHER_ADDR_LEN);
381 1.1.22.1 simonb KASSERT(pd != NULL);
382 1.1.22.1 simonb if (prop_dictionary_set(device_properties(dev),
383 1.1.22.1 simonb "mac-addr", pd) == FALSE) {
384 1.1.22.1 simonb printf("WARNING: unable to set mac-addr property "
385 1.1.22.1 simonb "for %s\n", dev->dv_xname);
386 1.1.22.1 simonb }
387 1.1.22.1 simonb } else {
388 1.1.22.1 simonb printf("%s: WARNING: unable to read MAC address from SEEPROM\n",
389 1.1.22.1 simonb dev->dv_xname);
390 1.1.22.1 simonb }
391 1.1.22.1 simonb }
392 1.1.22.1 simonb }
393 1.1.22.1 simonb
394