port.ms 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  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 is no support for little-endian machines.
  71. (A little-endian port exists, but is not included in the distribution.
  72. Contact us if you need it.)
  73. Considering its speed, the Plan 9 compiler generates good code,
  74. but the commercial
  75. MIPS compiler with all the stops pulled out consistently beats it
  76. by 20% or so, sometimes more. Since ours compiles about 10 times
  77. faster and we spend most of our time compiling anyway,
  78. we are content with the tradeoff.
  79. .PP
  80. The compiler is solid: we've used it for several big projects and, of course,
  81. all our applications run under it.
  82. The behavior of floating-point programs is much like on the 68040:
  83. the operating system emulates where necessary to get past non-trapping
  84. underflow and overflow, but does not handle gradual underflow or
  85. denormalized numbers or not-a-numbers.
  86. .SH
  87. The SPARC compiler
  88. .PP
  89. The SPARC compiler is also solid and fast, although we haven't
  90. used it for a few years, due to a lack of current hardware. We have seen it do
  91. much better than GCC with all the optimizations, but on average
  92. it is probably about the same.
  93. .PP
  94. We used to run some old SPARC machines with no multiply or divide instructions,
  95. so the compiler
  96. does not produce them by default.
  97. Instead it calls internal subroutines.
  98. A loader flag,
  99. .CW -M ,
  100. causes the instructions to be emitted. The operating system has
  101. trap code to emulate them if necessary, but the traps are slower than
  102. emulating them in user mode.
  103. In any modern lab, in which SPARCS have the instructions, it would be worth enabling the
  104. .CW -M
  105. flag by default.
  106. .PP
  107. The floating point story is the same as on the MIPS.
  108. .SH
  109. The Intel i386 compiler
  110. .PP
  111. This is really an
  112. .I x 86
  113. compiler, for
  114. .I x >2.
  115. It works only
  116. if the machine is in 32-bit protected mode.
  117. It is solid and generates tolerable code; it is our main compiler these days.
  118. .PP
  119. Floating point is well-behaved, but the compiler assumes i387-compatible
  120. hardware to execute
  121. the instructions. With 387 hardware,
  122. the system does the full IEEE 754 job, just like
  123. the MC68881. By default, the libraries don't use the 387 built-ins for
  124. transcendentals.
  125. If you want them,
  126. build the code in
  127. .CW /sys/src/libc/386/387 .
  128. .SH
  129. The Intel i960 compiler
  130. .PP
  131. This compiler was built as a weekend hack to let us get the Cyclone
  132. boards running. It has only been used to run one program\(emthe on-board
  133. code in the Cyclone\(emand is therefore likely to be buggy.
  134. There are a number of obvious optimizations to the code that have
  135. never been attempted.
  136. For example, the compiler does not support pipelining.
  137. The code runs in little-endian mode.
  138. .SH
  139. The DEC Alpha compiler
  140. .PP
  141. The Alpha compiler is based on a port done by David Hogan while
  142. studying at the Basser Department of Computer Science, University of Sydney.
  143. It has been used to build a running version of the operating system, but has
  144. not been stressed as much as some of the other compilers.
  145. .PP
  146. Although the Alpha is a 64-bit architecture, this compiler treats
  147. .CW int s,
  148. .CW long s
  149. and pointers as 32 bits. Access to the 64-bit operations is available through the
  150. .CW vlong
  151. type, as with the other architectures.
  152. .PP
  153. The compiler assumes that the target CPU supports the optional byte and
  154. word memory operations (the ``BWX'' extension).
  155. If you have an old system, you can generate code without using the extension
  156. by passing the loader the
  157. .CW -x
  158. option.
  159. .PP
  160. There are a number of optimizations that the Alpha Architecture Handbook
  161. recommends, but this compiler does not do. In particular, there is currently
  162. no support for the code alignment and code scheduling optimizations.
  163. .PP
  164. The compiler tries to conform to IEEE, but some Alpha CPUs do not implement
  165. all of the rounding and trapping modes in silicon. Fixing this problem requires
  166. some software emulation code in the kernel; to date, this has not been attempted.
  167. .SH
  168. The PowerPC compiler
  169. .PP
  170. The PowerPC compiler supports the 32-bit PowerPC architecture only;
  171. it does not support either the 64-bit extensions or the POWER compatibility instructions.
  172. It has been used for production operating system work on the 603, 603e, 604e, 821, 823, and 860.
  173. On the 8xx floating-point instructions must be emulated.
  174. Instruction scheduling is not implemented; otherwise the code generated
  175. is similar to that for the other load-store architectures.
  176. The compiler makes little or no use of unusual PowerPC features such as the
  177. counter register, several condition code registers, and multiply-accumulate
  178. instructions, but they are sometimes
  179. used by assembly language routines in the libraries.
  180. .SH
  181. The Acorn ARM compiler
  182. .PP
  183. The ARM compiler is fairly solid; it has been used for some production
  184. operating system work including Inferno and the Plan 9 kernel
  185. for the iPAQ, which uses a StrongArm SA1.
  186. The compiler supports the ARMv4 architecture;
  187. it does not support the Thumb instruction set.
  188. It has been used on ARM7500FE processors 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 file server
  343. .PP
  344. The file server runs on only a handful of distinct machines.
  345. It is a stand-alone program, distantly related to the CPU server
  346. code, that runs no user code: all it does is serve files on
  347. network connections.
  348. It supports only SCSI disks, which can be interleaved for
  349. faster throughput.
  350. A DOS file on
  351. an IDE drive can hold the configuration information.
  352. See
  353. .I fsconfig (8)
  354. for an explanation of how
  355. to configure a file server.
  356. .PP
  357. To boot a file server, follow the directions for booting a CPU server
  358. using the file name
  359. .CW 9\f2machtype\fPfs
  360. where
  361. .I machtype
  362. is
  363. .CW pc ,
  364. etc. as appropriate.
  365. We are releasing only the PC version.
  366. .SH
  367. The IBM PC file server
  368. .PP
  369. Except for the restriction to SCSI disks,
  370. the PC file server has the same hardware requirements as
  371. the regular PC operating system.
  372. However, only a subset of the supported SCSI (Adaptec 1542, Mylex Multimaster,
  373. and Symbios 53C8XX) and Ethernet (Digital 2114x,
  374. Intel 8255x, and 3Com) controllers
  375. may be
  376. used.
  377. Any of the boot methods described in
  378. .I 9load (8)
  379. will work.
  380. .PP
  381. To boot any PC, the file
  382. .CW 9load
  383. must reside on a MS-DOS formatted floppy, IDE disk,
  384. or SCSI disk.
  385. However, PCs have no non-volatile RAM in which the
  386. file server can store its configuration information, so the system
  387. stores it in a file on an MS-DOS file system instead.
  388. This file, however, cannot live on a SCSI disk, only a floppy or IDE.
  389. (This restriction avoids a lot of duplicated interfaces in the
  390. system.)
  391. Thus the file server cannot be all-SCSI.
  392. See
  393. .I plan9.ini (8)
  394. for details about the
  395. .I nvr
  396. variable and specifying the console device.
  397. .SH
  398. Backup
  399. .PP
  400. Our main file server is unlikely to be much like yours.
  401. It is a PC with 128 megabytes
  402. of cache memory, 56 gigabytes of SCSI magnetic
  403. disk, and a Hewlett-Packard SureStore Optical 1200ex
  404. magneto-optical jukebox, with 1.2 terabytes of storage.
  405. This driver runs the SCSI standard jukebox protocol.
  406. We also have a driver for a (non-standard)
  407. SONY WDA-610
  408. Writable Disk Auto Changer (WORM),
  409. which stores almost 350 gigabytes of data.
  410. .PP
  411. The WORM is actually the prime storage; the SCSI disk is just
  412. a cache to improve performance.
  413. Early each morning the system constructs on WORM an image of
  414. the entire system as it appears that day. Our backup system
  415. is therefore just a file server that lets
  416. you look at yesterday's (or last year's) file system.
  417. .PP
  418. If you don't have a magneto-optical jukebox,
  419. you might consider attaching a CD-R jukebox or even just
  420. using a single WORM drive and managing the dumps a little less
  421. automatically. This is just a long way of saying that the
  422. system as distributed has no explicit method of backup other
  423. than through the WORM jukebox.
  424. .PP
  425. Not everyone can invest in such expensive hardware, however.
  426. Although it wouldn't be as luxurious,
  427. it would be possible to use
  428. .I mkfs (8)
  429. to build regular file system archives and use
  430. .I scuzz (8)
  431. to stream them to a SCSI 8mm tape drive.
  432. .CW Mkext
  433. could then extract them.
  434. Another alternative is to use
  435. .I dump9660
  436. (see
  437. .I mk9660 (8)),
  438. which stores incremental backups on CD images
  439. in the form of a dump hierarchy.
  440. .PP
  441. It is also possible to treat a regular disk, or even a part of a disk,
  442. as a fake WORM, which can then be streamed to tape when it fills.
  443. This is a bad idea for a production system but a good way to
  444. learn about the WORM software.
  445. Again, see
  446. .I fsconfig (8)
  447. for details.