README revision 1.5 1 1.5 imp $NetBSD: README,v 1.5 2006/05/18 20:13:14 imp Exp $
2 1.1 scw
3 1.1 scw NetBSD for the Linksys NSLU2 (a.k.a. "Slug")
4 1.1 scw ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5 1.1 scw
6 1.1 scw The NSLU2 (Network Storage Link for USB 2.0 Disk Drives) is a small, cheap
7 1.1 scw NAS device consisting of an Intel IXP420 (Xscale) CPU, a 10/100mbit Ethernet
8 1.1 scw port, and two USB 2.0 ports. It has 32MB of SDRAM and 8MB of Flash memory,
9 1.1 scw and runs RedBoot/Linux out of the box.
10 1.1 scw
11 1.1 scw It is eminently hackable.
12 1.1 scw
13 1.1 scw The guys over at http://www.nslu2-linux.org/ have done a good job of
14 1.1 scw documenting just about every aspect of the hardware and original firmware.
15 1.1 scw They also provide a custom "Unslung" Linux distribution to replace the
16 1.1 scw original hobbled kernel/userland.
17 1.1 scw
18 1.1 scw Because of the amount of documentation available, and the fact that Slugs
19 1.1 scw are available so cheaply (I paid just over UKP 50 for mine, brand new) I
20 1.1 scw decided to buy one and port NetBSD to it.
21 1.1 scw
22 1.1 scw This is the result of that effort.
23 1.1 scw
24 1.1 scw Note: The Slug's IXP420 CPU runs in big-endian mode, so when building a
25 1.1 scw cross toolchain you must pass "-m evbarm -a armeb" to build.sh.
26 1.1 scw
27 1.1 scw
28 1.1 scw
29 1.1 scw Current status
30 1.1 scw ==============
31 1.1 scw
32 1.1 scw The following bits of Slug hardware are not (yet?) supported:
33 1.1 scw
34 1.1 scw - NPE Ethernet
35 1.1 scw Someone will have to port Intel's IXP425 access library before this can
36 1.1 scw be made to work. If that someone is you, the source code is available
37 1.1 scw online here:
38 1.1 scw
39 1.1 scw http://www.intel.com/design/network/products/npfamily/ixp425.htm
40 1.1 scw
41 1.5 imp Look under "Tools & Software", then select "Intel(R) IPXX400 Software"
42 1.5 imp to downlod the documentation. If you aren't registered, select
43 1.5 imp "Register/Login" first. Documentation is available in the
44 1.1 scw "Technical Documents" section.
45 1.1 scw
46 1.1 scw The easiest option will be to download the non-crypto version of the
47 1.1 scw Access Library. The crypto-enabled version requires a lot more form
48 1.1 scw filling. The Slug's IXP420 has no crypto capabilities anyway.
49 1.1 scw
50 1.1 scw - Flash ROM
51 1.1 scw You can write gzboot kernels (when support is added) to Flash using
52 1.1 scw RedBoot, so all is not lost.
53 1.1 scw
54 1.1 scw - Buzzer
55 1.1 scw In the absence of a decent API to expose the onboard buzzer to userland,
56 1.1 scw this is not yet supported. I envisage using timer1 to generate an
57 1.4 lukem interrupt at the required rate (1-2 kHz). The handler will toggle the
58 1.1 scw buzzer GPIO pin. Obviously timer1 will be configured only when necessary
59 1.4 lukem as a 1-2 kHz interrupt rate will sap a fair bit of CPU horsepower.
60 1.1 scw
61 1.1 scw Everything else is fully supported, including the power/reset buttons and
62 1.1 scw disk activity/status LEDs.
63 1.1 scw
64 1.1 scw Non-hardware items on the TODO list include:
65 1.1 scw
66 1.1 scw - gzboot support.
67 1.3 scw The Slug's 8MB of Flash is split into 5 segments:
68 1.3 scw
69 1.3 scw 1 0x50000000-0x5003ffff: RedBoot (with some additional bits at the end).
70 1.3 scw 2 0x50040000-0x5005ffff: Sysconf (used by the Linksys firmware).
71 1.3 scw 3 0x50060000-0x5015ffff: Self-extracting compressed kernel image.
72 1.3 scw 4 0x50160000-0x507dffff: Compressed ramdisk image.
73 1.3 scw 5 0x507e0000-0x507fffff: SerComm Flash trailer.
74 1.3 scw
75 1.3 scw Segments 1, 2, and 5 should be considered immutable. Segments 3 and 4
76 1.3 scw have a 16-byte header, the first 4 bytes of which describe the length
77 1.3 scw of the image contained in that segment (not including the header).
78 1.3 scw
79 1.3 scw On power-up, RedBoot copies the image in segment 3 into SDRAM at 0x01d00000,
80 1.3 scw and the image in segment 4 into SDRAM at 0x01000000. RedBoot then jumps to
81 1.3 scw 0x01d00000. This is just a regular ARM Linux compressed kernel bootloader.
82 1.3 scw
83 1.3 scw So, we need to create a version of gzboot linked not at Flash address
84 1.3 scw 0x50060000, but at 0x01d00000 instead. The only downside is that it looks
85 1.3 scw like the combined size of gzboot plus compressed kernel cannot exceed 1MB.
86 1.3 scw
87 1.3 scw To support an md(4) root filesystem, we will need to modify gzboot to
88 1.3 scw decompress the ramdisk image from segment 4 and copy it to the correct
89 1.3 scw place in the decompressed kernel image.
90 1.1 scw
91 1.1 scw - Move the kernel link address closer to the start of SDRAM. We waste a
92 1.1 scw little under 2MB with the current setup.
93 1.1 scw
94 1.1 scw
95 1.1 scw
96 1.1 scw Getting NetBSD onto the NSLU2
97 1.1 scw =============================
98 1.1 scw
99 1.1 scw Thanks to the efforts of the guys over at www.nslu2-linux.org, hacking the
100 1.1 scw Slug is a pretty easy proposition, but some soldering skills are essential.
101 1.1 scw For a first-time install of NetBSD (at least until someone comes up with a
102 1.1 scw nice easy binary install image) you will almost certainly require access to
103 1.1 scw the serial console. This means firing up your trusty soldering iron and
104 1.1 scw hooking up a MAX3232 chip to your Slug. While your soldering iron is hot,
105 1.1 scw you should seriously consider de-restricting your Slug's CPU core clock
106 1.1 scw speed (133MHz stock, 266MHz de-restricted) by removing a single surface-
107 1.1 scw mount resistor. Full instructions for both the these mods are on the above
108 1.1 scw website.
109 1.1 scw
110 1.1 scw Once you have console access you can interrupt RedBoot's auto-boot process
111 1.1 scw using CTRL-C. You are now in a position to download a NetBSD kernel into
112 1.1 scw SDRAM.
113 1.1 scw
114 1.1 scw You will have to configure a TFTP server on a machine hooked up to the same
115 1.1 scw Ethernet segment as the Slug. This machine's Ethernet interface must also
116 1.1 scw be configured to have an address in the 192.168.0.0/24 subnet since the
117 1.1 scw Slug's Ethernet *always* defaults to 192.168.0.1 when running RedBoot.
118 1.1 scw There seems to be no way to alter this, so the best course of action will
119 1.1 scw probably be to set up an alias on the server's interface. 192.168.0.2 is
120 1.1 scw a good choice.
121 1.1 scw
122 1.1 scw Assuming you've done all that and have dropped a suitable kernel image
123 1.1 scw into the TFTP directory, the following commands will load and run the
124 1.1 scw kernel.
125 1.1 scw
126 1.1 scw redboot> ip_address -h 192.168.0.2
127 1.1 scw redboot> load -r -b 0x200000 netbsd.bin
128 1.1 scw redboot> go
129 1.1 scw
130 1.1 scw At this point your only real option is to mount the root filesystem from
131 1.1 scw a USB disk device as the onboard Ethernet is not (yet?) supported. However,
132 1.1 scw there's nothing to stop you using a USB-Ethernet interface...
133 1.1 scw
134 1.1 scw Note that the kernel will always report the CPU core clock speed as 266MHz
135 1.1 scw even if your Slug's CPU clock is running at a stock 133MHz.
136 1.1 scw
137 1.1 scw
138 1.1 scw
139 1.1 scw Burning a NetBSD kernel into Flash
140 1.1 scw ==================================
141 1.1 scw
142 1.1 scw TBD (waiting for gzboot support).
143 1.1 scw
144