port.ms 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  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. The compiler supports the ARMv4 architecture;
  186. it does not support the Thumb instruction sets.
  187. It has been used on ARM7500FE, ARM926 and Cortex-A8 processors
  188. and the Strongarm SA1 core machines.
  189. The compiler generates instructions for the ARM floating-point coprocessor.
  190. .SH
  191. The AMD 29000 compiler
  192. .PP
  193. This compiler was used to port an operating system to an AMD 29240 processor.
  194. The project is long abandoned, but the compiler lives on.
  195. .SH
  196. The Carrera operating system
  197. .PP
  198. We used to have a number of MIPS R4400 PC-like devices called Carreras,
  199. with custom-built frame buffers, that we used as terminals.
  200. They're almost all decommissioned now, but we're including the source as a reference
  201. in case someone wants to get another MIPS-based system running.
  202. .SH
  203. The IBM PC operating system
  204. .PP
  205. The PC version of Plan 9 can boot either from MS-DOS
  206. or directly from a disk created by the
  207. .CW format
  208. command; see
  209. .I prep (8).
  210. Plan 9 runs in 32-bit mode\(emwhich requires a 386 or later model x86 processor\(emand
  211. has an interrupt-driven I/O system, so it does not
  212. use the BIOS (except for a small portion of the boot program and floppy boot block).
  213. This helps performance but limits the set of I/O devices that it can support without
  214. special code.
  215. .PP
  216. Plan 9 supports the ISA, EISA, and PCI buses as well as PCMCIA and PC card devices.
  217. It is infeasible to list all the supported machines, because
  218. the PC-clone marketplace is too volatile and there is
  219. no guarantee that the machine you buy today will contain the
  220. same components as the one you bought yesterday.
  221. (For our lab, we buy components and assemble the machines
  222. ourselves in an attempt to lessen this effect.)
  223. Both IDE/ATA and SCSI disks are supported, and
  224. there is support for large ATA drives.
  225. CD-ROMs are supported two ways, either on the SCSI bus, or as ATA(PI) devices.
  226. The SCSI adapter must be a member of the Mylex Multimaster (old Buslogic BT-*) series
  227. or the Symbios 53C8XX series.
  228. Supported Ethernet cards include the
  229. AMD79C790,
  230. 3COM Etherlink III and 3C589 series,
  231. Lucent Wavelan and compatibles,
  232. NE2000,
  233. WD8003,
  234. WD8013,
  235. SMC Elite and Elite Ultra,
  236. Linksys Combo EthernetCard and EtherFast 10/100,
  237. and a variety of controllers based on the
  238. Intel i8255[789] and Digital (now Intel) 21114x chips.
  239. We mostly use Etherlink III, i8255[789], and 21114x, so those drivers may be more robust.
  240. There must be an explicit Plan 9 driver for peripherals;
  241. it cannot use DOS or Windows drivers.
  242. Also,
  243. Plan 9 cannot exploit special hardware-related features that fall outside of the
  244. IBM PC model,
  245. such as power management,
  246. unless architecture-dependent code is added to the kernel.
  247. For more details see
  248. .I plan9.ini (8).
  249. .PP
  250. Over the years,
  251. Plan 9 has run on a number of VGA cards.
  252. Recent changes to the graphics system have not been
  253. tested on most of the older cards; some effort may be needed to get them working again.
  254. In our lab, most of our machines use the ATI Mach64, S3 ViRGE, or S3 Savage chips,
  255. so such devices are probably
  256. the most reliable.
  257. We also use a few Matrox and TNT cards.
  258. The system requires a hardware cursor.
  259. For more details see
  260. .I vgadb (6)
  261. and
  262. .I vga (8).
  263. The wiki
  264. .CW http://plan9.bell-labs.com/wiki/plan9 ) (
  265. contains the definitive list of cards that are known to work; see the ``supported PC hardware''
  266. page.
  267. .PP
  268. For audio, Plan 9 supports the Sound Blaster 16 and compatibles.
  269. (Note that audio doesn't work under Plan 9 with 8-bit Sound Blasters.)
  270. There is also user-level support for USB audio devices; see
  271. .I usb (4).
  272. .PP
  273. Finally, it's important to have a three-button mouse with Plan 9.
  274. The system currently works only with mice on the PS/2 port or USB.
  275. Serial mouse support should return before long.
  276. .PP
  277. Once you have Plan 9 installed (see the wiki's installation document)
  278. run the program
  279. .CW ld
  280. from DOS
  281. or use a boot disk. See
  282. .I booting (8),
  283. .I 9load (8),
  284. and
  285. .I prep (8)
  286. for more information.
  287. .SH
  288. The Alpha PC operating system
  289. .PP
  290. Plan 9 runs on the Alpha PC 164.
  291. The Alpha port has not been used as much as the others,
  292. and should be considered a preliminary release.
  293. .PP
  294. The port uses the OSF/1 flavor
  295. of PALcode, and should be booted from the SRM firmware (booting
  296. from ARC is not supported).
  297. Supported devices are a subset of the PC ones; currently
  298. this includes DECchip 2114x-based ethernet cards, S3 VGA cards,
  299. Sound Blaster 16-compatible audio, floppy drives, and ATA hard disks.
  300. .PP
  301. The system has to be booted via tftp.
  302. See
  303. .I booting (8)
  304. for details.
  305. .SH
  306. The PowerPC operating system
  307. .PP
  308. We have a version of the system that runs on the PowerPC
  309. on a home-grown machine called Viaduct.
  310. The Viaduct minibrick is a small (12x9x3 cm) low-cost embedded
  311. computer consisting of a 50Mhz MPC850, 16MB sdram, 2MB flash,
  312. and two 10Mb Ethernet ports. It is designed for home/SOHO
  313. networking applications such as VPN, firewalls, NAT, etc.
  314. .PP
  315. The kernel has also been ported to the Motorola MTX embedded motherboard;
  316. that port is included in the distribution.
  317. The port only works with a 604e processor (the 603e is substantially different)
  318. and at present only a single CPU is permitted.
  319. .SH
  320. The Compaq iPAQ operating system
  321. .PP
  322. Plan 9 was ported to Compaq's iPAQ Pocket PC,
  323. which uses the StrongArm SA1 processor.
  324. The model we have is a 3630; neighboring models also work.
  325. The kernel can drive a PCMCIA sleeve with a WaveLAN card, but no other PCMCIA
  326. devices have been ported yet.
  327. .PP
  328. The iPAQ runs
  329. .CW rio
  330. with a small keyboard application that allows Palm-style handwriting
  331. input as well as typing with the stylus on a miniature keyboard.
  332. .PP
  333. Fco. J. Ballesteros
  334. .CW nemo@plan9.escet.urjc.es ) (
  335. added support for hibernation, but we haven't been able to
  336. get that to work again in the new kernel; the code is there, however,
  337. for volunteers to play with.
  338. See the file
  339. .CW /sys/src/9/bitsy/Booting101
  340. for information about installing Plan 9 on the iPAQ.
  341. .SH
  342. The Marvell Kirkwood operating system
  343. .PP
  344. This is an ARM kernel for the ARM926EJ-S processor
  345. and it emulates floating-point and
  346. CAS (compare-and-swap) instructions.
  347. It is known to run on the Sheevaplug and Openrd-client boards.
  348. It is derived from a port of native Inferno to the Sheevaplug
  349. by Salva Peir\f(Jpó\fP and Mechiel Lukkien.
  350. There are many features of the Kirkwood system-on-a-chip
  351. that it does not exploit.
  352. There are currently drivers for up to two
  353. Gigabit Ethernet interfaces,
  354. USB and the console serial port;
  355. we hope to add crypto acceleration, and a video driver for the Openrd-client.
  356. .SH
  357. The TI OMAP3530 operating system
  358. .PP
  359. This is an ARM kernel for the Cortex-A8 processor
  360. and it emulates pre-VFPv3 floating-point and
  361. CAS (compare-and-swap) instructions.
  362. It is known to run on the IGEPv2 board and might
  363. eventually run on the Beagleboard, once USB is working.
  364. There are many features of the OMAP system-on-a-chip that it does not exploit.
  365. Initially, there are drivers for the IGEPv2's SMSC 9221 100Mb/s Ethernet
  366. interface and the console serial port;
  367. we hope to add USB, flash memory and video drivers.
  368. .
  369. .ig
  370. .SH
  371. The file server
  372. .PP
  373. The file server runs on only a handful of distinct machines.
  374. It is a stand-alone program, distantly related to the CPU server
  375. code, that runs no user code: all it does is serve files on
  376. network connections.
  377. It supports only SCSI disks, which can be interleaved for
  378. faster throughput.
  379. A DOS file on
  380. an IDE drive can hold the configuration information.
  381. See
  382. .I fsconfig (8)
  383. for an explanation of how
  384. to configure a file server.
  385. .PP
  386. To boot a file server, follow the directions for booting a CPU server
  387. using the file name
  388. .CW 9\f2machtype\fPfs
  389. where
  390. .I machtype
  391. is
  392. .CW pc ,
  393. etc. as appropriate.
  394. We are releasing only the PC version.
  395. .SH
  396. The IBM PC file server
  397. .PP
  398. Except for the restriction to SCSI disks,
  399. the PC file server has the same hardware requirements as
  400. the regular PC operating system.
  401. However, only a subset of the supported SCSI (Adaptec 1542, Mylex Multimaster,
  402. and Symbios 53C8XX) and Ethernet (Digital 2114x,
  403. Intel 8255x, and 3Com) controllers
  404. may be
  405. used.
  406. Any of the boot methods described in
  407. .I 9load (8)
  408. will work.
  409. .PP
  410. To boot any PC, the file
  411. .CW 9load
  412. must reside on a MS-DOS formatted floppy, IDE disk,
  413. or SCSI disk.
  414. However, PCs have no non-volatile RAM in which the
  415. file server can store its configuration information, so the system
  416. stores it in a file on an MS-DOS file system instead.
  417. This file, however, cannot live on a SCSI disk, only a floppy or IDE.
  418. (This restriction avoids a lot of duplicated interfaces in the
  419. system.)
  420. Thus the file server cannot be all-SCSI.
  421. See
  422. .I plan9.ini (8)
  423. for details about the
  424. .I nvr
  425. variable and specifying the console device.
  426. .SH
  427. Backup
  428. .PP
  429. Our main file server is unlikely to be much like yours.
  430. It is a PC with 128 megabytes
  431. of cache memory, 56 gigabytes of SCSI magnetic
  432. disk, and a Hewlett-Packard SureStore Optical 1200ex
  433. magneto-optical jukebox, with 1.2 terabytes of storage.
  434. This driver runs the SCSI standard jukebox protocol.
  435. We also have a driver for a (non-standard)
  436. SONY WDA-610
  437. Writable Disk Auto Changer (WORM),
  438. which stores almost 350 gigabytes of data.
  439. .PP
  440. The WORM is actually the prime storage; the SCSI disk is just
  441. a cache to improve performance.
  442. Early each morning the system constructs on WORM an image of
  443. the entire system as it appears that day. Our backup system
  444. is therefore just a file server that lets
  445. you look at yesterday's (or last year's) file system.
  446. .PP
  447. If you don't have a magneto-optical jukebox,
  448. you might consider attaching a CD-R jukebox or even just
  449. using a single WORM drive and managing the dumps a little less
  450. automatically. This is just a long way of saying that the
  451. system as distributed has no explicit method of backup other
  452. than through the WORM jukebox.
  453. .PP
  454. Not everyone can invest in such expensive hardware, however.
  455. Although it wouldn't be as luxurious,
  456. it would be possible to use
  457. .I mkfs (8)
  458. to build regular file system archives and use
  459. .I scuzz (8)
  460. to stream them to a SCSI 8mm tape drive.
  461. .CW Mkext
  462. could then extract them.
  463. Another alternative is to use
  464. .I dump9660
  465. (see
  466. .I mk9660 (8)),
  467. which stores incremental backups on CD images
  468. in the form of a dump hierarchy.
  469. .PP
  470. It is also possible to treat a regular disk, or even a part of a disk,
  471. as a fake WORM, which can then be streamed to tape when it fills.
  472. This is a bad idea for a production system but a good way to
  473. learn about the WORM software.
  474. Again, see
  475. .I fsconfig (8)
  476. for details.
  477. ..