port.ms 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  1. .HTML "The Various Ports
  2. .TL
  3. The Various Ports
  4. .PP
  5. This document collects comments about the various
  6. architectures supported by Plan 9.
  7. The system tries to hide most of the differences between machines,
  8. so the machines as seen by a Plan 9
  9. user look different from how they are perceived through commercial software.
  10. Also, because we are a small group, we couldn't do everything:
  11. exploit every optimization, support every model,
  12. drive every device.
  13. This document records what we
  14. .I have
  15. done.
  16. The first section discusses the compiler/assembler/loader suite for each machine.
  17. The second talks about
  18. the operating system implemented on each of the various
  19. machines.
  20. .SH
  21. The Motorola MC68020 compiler
  22. .PP
  23. This is the oldest compiler of the bunch. Relative to its
  24. competitors\(emcommercial compilers for the same machine\(emit generates
  25. quite good code.
  26. It assumes at least a 68020 architecture: some of the addressing
  27. modes it generates are not on the 68000 or 68010.
  28. .PP
  29. We also use this compiler for the 68040. Except for a few
  30. instructions and registers available only from assembly language,
  31. the only user-visible difference between these machines is in
  32. floating point. Our 68020s all have 68881 or 68882 floating
  33. point units attached, so to execute floating point programs we
  34. depend on there being appropriate hardware.
  35. Unfortunately, the 68040 is not quite so thorough in its implementation
  36. of the IEEE 754 standard or in its provision of built-in instructions
  37. for the
  38. transcendental functions. The latter was easy to get around: we
  39. don't use them on the 68020 either, but we do have a library,
  40. .CW -l68881 ,
  41. that you can use if you need the performance (which can be
  42. substantial:
  43. .CW astro
  44. runs twice as fast).
  45. We don't use this library by default because we want to run the same
  46. binaries on both machines and don't want to emulate
  47. .CW FCOSH
  48. in the operating system.
  49. .PP
  50. The problem with IEEE is nastier. We didn't really want to deal
  51. with gradual underflow and all that, especially since we had
  52. half a dozen machines we'd need to do it on, so on the 68040
  53. we implement non-trapping underflow as truncation to zero and
  54. do nothing about denormalized numbers and not-a-numbers.
  55. This means the 68020
  56. and the 68040 are not precisely compatible.
  57. .SH
  58. The Motorola MC68000 compiler
  59. .PP
  60. This compiler is a stripped-down version of the MC68020 compiler
  61. built for an abortive port to the Dragonball processor on the Palm Pilot.
  62. It generates position-independent code whose overall quality is much
  63. poorer than the code for the MC68020.
  64. .SH
  65. The MIPS compiler
  66. .PP
  67. This compiler generates code for the R2000, R3000, and R4000 machines configured
  68. to be big-endians. The compiler generates no R4000-specific instructions
  69. although the assembler and loader support the new user-mode instructions.
  70. There are options to generate code for little-endian machines.
  71. Considering its speed, the Plan 9 compiler generates good code,
  72. but the commercial
  73. MIPS compiler with all the stops pulled out consistently beats it
  74. by 20% or so, sometimes more. Since ours compiles about 10 times
  75. faster and we spend most of our time compiling anyway,
  76. we are content with the tradeoff.
  77. .PP
  78. The compiler is solid: we've used it for several big projects and, of course,
  79. all our applications run under it.
  80. The behavior of floating-point programs is much like on the 68040:
  81. the operating system emulates where necessary to get past non-trapping
  82. underflow and overflow, but does not handle gradual underflow or
  83. denormalized numbers or not-a-numbers.
  84. .SH
  85. The SPARC compiler
  86. .PP
  87. The SPARC compiler is also solid and fast, although we haven't
  88. used it for a few years, due to a lack of current hardware. We have seen it do
  89. much better than GCC with all the optimizations, but on average
  90. it is probably about the same.
  91. .PP
  92. We used to run some old SPARC machines with no multiply or divide instructions,
  93. so the compiler
  94. does not produce them by default.
  95. Instead it calls internal subroutines.
  96. A loader flag,
  97. .CW -M ,
  98. causes the instructions to be emitted. The operating system has
  99. trap code to emulate them if necessary, but the traps are slower than
  100. emulating them in user mode.
  101. In any modern lab, in which SPARCS have the instructions, it would be worth enabling the
  102. .CW -M
  103. flag by default.
  104. .PP
  105. The floating point story is the same as on the MIPS.
  106. .SH
  107. The Intel i386 compiler
  108. .PP
  109. This is really an
  110. .I x 86
  111. compiler, for
  112. .I x >2.
  113. It works only
  114. if the machine is in 32-bit protected mode.
  115. It is solid and generates tolerable code; it is our main compiler these days.
  116. .PP
  117. Floating point is well-behaved, but the compiler assumes i387-compatible
  118. hardware to execute
  119. the instructions. With 387 hardware,
  120. the system does the full IEEE 754 job, just like
  121. the MC68881. By default, the libraries don't use the 387 built-ins for
  122. transcendentals.
  123. If you want them,
  124. build the code in
  125. .CW /sys/src/libc/386/387 .
  126. .SH
  127. The Intel i960 compiler
  128. .PP
  129. This compiler was built as a weekend hack to let us get the Cyclone
  130. boards running. It has only been used to run one program\(emthe on-board
  131. code in the Cyclone\(emand is therefore likely to be buggy.
  132. There are a number of obvious optimizations to the code that have
  133. never been attempted.
  134. For example, the compiler does not support pipelining.
  135. The code runs in little-endian mode.
  136. .SH
  137. The DEC Alpha compiler
  138. .PP
  139. The Alpha compiler is based on a port done by David Hogan while
  140. studying at the Basser Department of Computer Science, University of Sydney.
  141. It has been used to build a running version of the operating system, but has
  142. not been stressed as much as some of the other compilers.
  143. .PP
  144. Although the Alpha is a 64-bit architecture, this compiler treats
  145. .CW int s,
  146. .CW long s
  147. and pointers as 32 bits. Access to the 64-bit operations is available through the
  148. .CW vlong
  149. type, as with the other architectures.
  150. .PP
  151. The compiler assumes that the target CPU supports the optional byte and
  152. word memory operations (the ``BWX'' extension).
  153. If you have an old system, you can generate code without using the extension
  154. by passing the loader the
  155. .CW -x
  156. option.
  157. .PP
  158. There are a number of optimizations that the Alpha Architecture Handbook
  159. recommends, but this compiler does not do. In particular, there is currently
  160. no support for the code alignment and code scheduling optimizations.
  161. .PP
  162. The compiler tries to conform to IEEE, but some Alpha CPUs do not implement
  163. all of the rounding and trapping modes in silicon. Fixing this problem requires
  164. some software emulation code in the kernel; to date, this has not been attempted.
  165. .SH
  166. The PowerPC compiler
  167. .PP
  168. The PowerPC compiler supports the 32-bit PowerPC architecture only;
  169. it does not support either the 64-bit extensions or the POWER compatibility instructions.
  170. It has been used for production operating system work on the 603, 603e, 604e, 821, 823, and 860,
  171. and experimental work on the 405, 440 and 450.
  172. On the 8xx floating-point instructions must be emulated.
  173. Instruction scheduling is not implemented; otherwise the code generated
  174. is similar to that for the other load-store architectures.
  175. The compiler makes little or no use of unusual PowerPC features such as the
  176. counter register, several condition code registers, and multiply-accumulate
  177. instructions, but they are sometimes
  178. used by assembly language routines in the libraries.
  179. .SH
  180. The ARM compiler
  181. .PP
  182. The ARM compiler is fairly solid; it has been used for some production
  183. operating system work including Inferno and the Plan 9 kernel
  184. for the iPAQ, which uses a StrongArm SA1, and the Sheevaplug,
  185. Guruplug, Dreamplug and others.
  186. The compiler supports the ARMv4 architecture;
  187. it does not support the Thumb instruction sets.
  188. It has been used on ARM7500FE, ARM926 and Cortex-A8 processors
  189. and the Strongarm SA1 core machines.
  190. The compiler generates instructions for
  191. ARM 7500 FPA floating-point coprocessor 1,
  192. but probably should instead generate VFP 3+ instructions
  193. for coprocessors 10 and 11.
  194. .SH
  195. The AMD 29000 compiler
  196. .PP
  197. This compiler was used to port an operating system to an AMD 29240 processor.
  198. The project is long abandoned, but the compiler lives on.
  199. .SH
  200. The Carrera operating system
  201. .PP
  202. We used to have a number of MIPS R4400 PC-like devices called Carreras,
  203. with custom-built frame buffers, that we used as terminals.
  204. They're almost all decommissioned now, but we're including the source as a reference
  205. in case someone wants to get another MIPS-based system running.
  206. .SH
  207. The IBM PC operating system
  208. .PP
  209. The PC version of Plan 9 can boot either from MS-DOS
  210. or directly from a disk created by the
  211. .CW format
  212. command; see
  213. .I prep (8).
  214. Plan 9 runs in 32-bit mode\(emwhich requires a 386 or later model x86 processor\(emand
  215. has an interrupt-driven I/O system, so it does not
  216. use the BIOS (except for a small portion of the boot program and floppy boot block).
  217. This helps performance but limits the set of I/O devices that it can support without
  218. special code.
  219. .PP
  220. Plan 9 supports the ISA, EISA, and PCI buses as well as PCMCIA and PC card devices.
  221. It is infeasible to list all the supported machines, because
  222. the PC-clone marketplace is too volatile and there is
  223. no guarantee that the machine you buy today will contain the
  224. same components as the one you bought yesterday.
  225. (For our lab, we buy components and assemble the machines
  226. ourselves in an attempt to lessen this effect.)
  227. Both IDE/ATA and SCSI disks are supported, and
  228. there is support for large ATA drives.
  229. CD-ROMs are supported two ways, either on the SCSI bus, or as ATA(PI) devices.
  230. The SCSI adapter must be a member of the Mylex Multimaster (old Buslogic BT-*) series
  231. or the Symbios 53C8XX series.
  232. Supported Ethernet cards include the
  233. AMD79C790,
  234. 3COM Etherlink III and 3C589 series,
  235. Lucent Wavelan and compatibles,
  236. NE2000,
  237. WD8003,
  238. WD8013,
  239. SMC Elite and Elite Ultra,
  240. Linksys Combo EthernetCard and EtherFast 10/100,
  241. and a variety of controllers based on the
  242. Intel i8255[789] and Digital (now Intel) 21114x chips.
  243. We mostly use Etherlink III, i8255[789], and 21114x, so those drivers may be more robust.
  244. There must be an explicit Plan 9 driver for peripherals;
  245. it cannot use DOS or Windows drivers.
  246. Also,
  247. Plan 9 cannot exploit special hardware-related features that fall outside of the
  248. IBM PC model,
  249. such as power management,
  250. unless architecture-dependent code is added to the kernel.
  251. For more details see
  252. .I plan9.ini (8).
  253. .PP
  254. Over the years,
  255. Plan 9 has run on a number of VGA cards.
  256. Recent changes to the graphics system have not been
  257. tested on most of the older cards; some effort may be needed to get them working again.
  258. In our lab, most of our machines use the ATI Mach64, S3 ViRGE, or S3 Savage chips,
  259. so such devices are probably
  260. the most reliable.
  261. We also use a few Matrox and TNT cards.
  262. The system requires a hardware cursor.
  263. For more details see
  264. .I vgadb (6)
  265. and
  266. .I vga (8).
  267. The wiki
  268. .CW http://plan9.bell-labs.com/wiki/plan9 ) (
  269. contains the definitive list of cards that are known to work; see the ``supported PC hardware''
  270. page.
  271. .PP
  272. For audio, Plan 9 supports the Sound Blaster 16 and compatibles.
  273. (Note that audio doesn't work under Plan 9 with 8-bit Sound Blasters.)
  274. There is also user-level support for USB audio devices; see
  275. .I usb (4).
  276. .PP
  277. Finally, it's important to have a three-button mouse with Plan 9.
  278. The system currently works only with mice on the PS/2 port or USB.
  279. Serial mouse support should return before long.
  280. .PP
  281. Once you have Plan 9 installed (see the wiki's installation document),
  282. use PXE or a boot disk to load the system. See
  283. .I booting (8),
  284. .I 9boot (8),
  285. and
  286. .I prep (8)
  287. for more information.
  288. .SH
  289. The Alpha PC operating system
  290. .PP
  291. Plan 9 runs on the Alpha PC 164.
  292. The Alpha port has not been used as much as the others,
  293. and should be considered a preliminary release.
  294. .PP
  295. The port uses the OSF/1 flavor
  296. of PALcode, and should be booted from the SRM firmware (booting
  297. from ARC is not supported).
  298. Supported devices are a subset of the PC ones; currently
  299. this includes DECchip 2114x-based ethernet cards, S3 VGA cards,
  300. Sound Blaster 16-compatible audio, floppy drives, and ATA hard disks.
  301. .PP
  302. The system has to be booted via tftp.
  303. See
  304. .I booting (8)
  305. for details.
  306. .SH
  307. The PowerPC operating system
  308. .PP
  309. We have a version of the system that runs on the PowerPC
  310. on a home-grown machine called Viaduct.
  311. The Viaduct minibrick is a small (12x9x3 cm) low-cost embedded
  312. computer consisting of a 50Mhz MPC850, 16MB sdram, 2MB flash,
  313. and two 10Mb Ethernet ports. It is designed for home/SOHO
  314. networking applications such as VPN, firewalls, NAT, etc.
  315. .PP
  316. The kernel has also been ported to the Motorola MTX embedded motherboard;
  317. that port is included in the distribution.
  318. The port only works with a 604e processor (the 603e is substantially different)
  319. and at present only a single CPU is permitted.
  320. .SH
  321. The Compaq iPAQ operating system
  322. .PP
  323. Plan 9 was ported to Compaq's iPAQ Pocket PC,
  324. which uses the StrongArm SA1 processor.
  325. The model we have is a 3630; neighboring models also work.
  326. The kernel can drive a PCMCIA sleeve with a WaveLAN card, but no other PCMCIA
  327. devices have been ported yet.
  328. .PP
  329. The iPAQ runs
  330. .CW rio
  331. with a small keyboard application that allows Palm-style handwriting
  332. input as well as typing with the stylus on a miniature keyboard.
  333. .PP
  334. Fco. J. Ballesteros
  335. .CW nemo@plan9.escet.urjc.es ) (
  336. added support for hibernation, but we haven't been able to
  337. get that to work again in the new kernel; the code is there, however,
  338. for volunteers to play with.
  339. See the file
  340. .CW /sys/src/9/bitsy/Booting101
  341. for information about installing Plan 9 on the iPAQ.
  342. .SH
  343. The Marvell Kirkwood operating system
  344. .PP
  345. This is an ARM kernel for the ARM926EJ-S processor
  346. and it emulates floating-point and
  347. CAS (compare-and-swap) instructions.
  348. It is known to run on the Sheevaplug, Guruplug, Dreamplug
  349. and Openrd-client boards.
  350. It is derived from a port of native Inferno to the Sheevaplug
  351. by Salva Peir\f(Jpó\fP and Mechiel Lukkien.
  352. There are many features of the Kirkwood system-on-a-chip
  353. that it does not exploit.
  354. There are currently drivers for up to two
  355. Gigabit Ethernet interfaces,
  356. USB and the console serial port;
  357. we hope to add crypto acceleration, and a video driver for the Openrd-client.
  358. .SH
  359. The Marvell PXA168 operating system
  360. .PP
  361. This is an ARM kernel for the ARM-v5-architecture processor in the
  362. Marvell PXA168 system-on-a-chip
  363. and it emulates floating-point and
  364. CAS (compare-and-swap) instructions.
  365. It is known to run on the Guruplug Display.
  366. There are many features of the system-on-a-chip
  367. that it does not exploit.
  368. There are currently drivers for
  369. a Fast Ethernet interface,
  370. and the console serial port;
  371. we hope to add crypto acceleration, and a video driver.
  372. .SH
  373. The TI OMAP35 operating system
  374. .PP
  375. This is an ARM kernel for the Cortex-A8 processor
  376. and it emulates pre-VFPv3 floating-point and
  377. CAS (compare-and-swap) instructions.
  378. It is known to run on the IGEPv2 board and the Gumstix Overo,
  379. and might eventually run on the Beagleboard, once USB is working.
  380. There are many features of the OMAP system-on-a-chip that it does not exploit.
  381. Initially, there are drivers for the SMSC 9221 100Mb/s Ethernet
  382. interface in the IGEPv2 and Overo,
  383. and the console serial port;
  384. we hope to add USB, flash memory and video drivers.
  385. .SH
  386. The Nvidia Tegra2 operating system
  387. .PP
  388. This is an ARM kernel for the dual Cortex-A9 processors
  389. in the Nvidia Tegra2 system-on-a-chip
  390. and it emulates pre-VFPv3 floating-point and
  391. CAS (compare-and-swap) instructions
  392. (the hardware has VFP3 floating-point but
  393. .CW 5l
  394. doesn't generate the new opcodes yet).
  395. It runs on the Compulab Trimslice.
  396. There are many features of the system-on-a-chip that it does not exploit.
  397. Initially, there are drivers for the Ethernet interface
  398. and the console serial port;
  399. we hope to add USB, flash memory and video drivers.
  400. .
  401. .ig
  402. .SH
  403. The file server
  404. .PP
  405. The file server runs on only a handful of distinct machines.
  406. It is a stand-alone program, distantly related to the CPU server
  407. code, that runs no user code: all it does is serve files on
  408. network connections.
  409. It supports only SCSI disks, which can be interleaved for
  410. faster throughput.
  411. A DOS file on
  412. an IDE drive can hold the configuration information.
  413. See
  414. .I fsconfig (8)
  415. for an explanation of how
  416. to configure a file server.
  417. .PP
  418. To boot a file server, follow the directions for booting a CPU server
  419. using the file name
  420. .CW 9\f2machtype\fPfs
  421. where
  422. .I machtype
  423. is
  424. .CW pc ,
  425. etc. as appropriate.
  426. We are releasing only the PC version.
  427. .SH
  428. The IBM PC file server
  429. .PP
  430. Except for the restriction to SCSI disks,
  431. the PC file server has the same hardware requirements as
  432. the regular PC operating system.
  433. However, only a subset of the supported SCSI (Adaptec 1542, Mylex Multimaster,
  434. and Symbios 53C8XX) and Ethernet (Digital 2114x,
  435. Intel 8255x, and 3Com) controllers
  436. may be
  437. used.
  438. Any of the boot methods described in
  439. .I 9load (8)
  440. will work.
  441. .PP
  442. To boot any PC, the file
  443. .CW 9load
  444. must reside on a MS-DOS formatted floppy, IDE disk,
  445. or SCSI disk.
  446. However, PCs have no non-volatile RAM in which the
  447. file server can store its configuration information, so the system
  448. stores it in a file on an MS-DOS file system instead.
  449. This file, however, cannot live on a SCSI disk, only a floppy or IDE.
  450. (This restriction avoids a lot of duplicated interfaces in the
  451. system.)
  452. Thus the file server cannot be all-SCSI.
  453. See
  454. .I plan9.ini (8)
  455. for details about the
  456. .I nvr
  457. variable and specifying the console device.
  458. .SH
  459. Backup
  460. .PP
  461. Our main file server is unlikely to be much like yours.
  462. It is a PC with 128 megabytes
  463. of cache memory, 56 gigabytes of SCSI magnetic
  464. disk, and a Hewlett-Packard SureStore Optical 1200ex
  465. magneto-optical jukebox, with 1.2 terabytes of storage.
  466. This driver runs the SCSI standard jukebox protocol.
  467. We also have a driver for a (non-standard)
  468. SONY WDA-610
  469. Writable Disk Auto Changer (WORM),
  470. which stores almost 350 gigabytes of data.
  471. .PP
  472. The WORM is actually the prime storage; the SCSI disk is just
  473. a cache to improve performance.
  474. Early each morning the system constructs on WORM an image of
  475. the entire system as it appears that day. Our backup system
  476. is therefore just a file server that lets
  477. you look at yesterday's (or last year's) file system.
  478. .PP
  479. If you don't have a magneto-optical jukebox,
  480. you might consider attaching a CD-R jukebox or even just
  481. using a single WORM drive and managing the dumps a little less
  482. automatically. This is just a long way of saying that the
  483. system as distributed has no explicit method of backup other
  484. than through the WORM jukebox.
  485. .PP
  486. Not everyone can invest in such expensive hardware, however.
  487. Although it wouldn't be as luxurious,
  488. it would be possible to use
  489. .I mkfs (8)
  490. to build regular file system archives and use
  491. .I scuzz (8)
  492. to stream them to a SCSI 8mm tape drive.
  493. .CW Mkext
  494. could then extract them.
  495. Another alternative is to use
  496. .I dump9660
  497. (see
  498. .I mk9660 (8)),
  499. which stores incremental backups on CD images
  500. in the form of a dump hierarchy.
  501. .PP
  502. It is also possible to treat a regular disk, or even a part of a disk,
  503. as a fake WORM, which can then be streamed to tape when it fills.
  504. This is a bad idea for a production system but a good way to
  505. learn about the WORM software.
  506. Again, see
  507. .I fsconfig (8)
  508. for details.
  509. ..