Annotation of wikisrc/ports/evbarm.mdwn, revision 1.45

1.1       mspo        1: [[!template id=port
                      2: port="evbarm"
1.6       mspo        3: port_alt="arm"
1.29      leot        4: port_var1="arm"
                      5: port_var2="armeb"
                      6: port_var3="earm"
                      7: port_var4="earmeb"
                      8: port_var5="earmv6hf"
                      9: port_var6="earmv7hf"
                     10: port_var7="earmv7hfeb"
1.31      leot       11: port_var_install_notes="evbarm-arm"
1.45    ! snj        12: cur_rel="7.1.1"
1.33      leot       13: future_rel="8.0"
                     14: changes_cur="7.0"
                     15: changes_future="8.0"
1.1       mspo       16: thumbnail="http://www.netbsd.org/images/ports/evbarm/adi_brh.gif"
                     17: about="""
                     18: NetBSD/evbarm is the port of NetBSD to various evaluation and prototyping
                     19: boards based on CPUs implementing the ARM architecture. NetBSD/evbarm also
                     20: supports some specific embedded system products based on prototype board
                     21: designs.
                     22: 
1.7       mspo       23: Matt Thomas is the maintainer of NetBSD/evbarm.
1.27      wiki       24: 
1.42      gdt        25: ### CPU types
                     26: 
                     27: The evbarm port can be built with a variety of CPU options.  There are
                     28: three main variables: the instruction set, the endianness, and whether
1.43      gdt        29: there is hardware floating point.  By default the CPU type is "earm",
                     30: and this implies little endian (el when explicitly stated), and soft
                     31: (emulated) floating point.  Another example, suitable for Raspberry PI
1.44      gdt        32: 2, is earmv7hf, which is the v7 instruction set, little endian,
1.43      gdt        33: and hardware floating point.
1.42      gdt        34: 
                     35: Typically, various boards are best compiled with a CPU type that
                     36: matches the board's CPU and floating point support, but generally a
                     37: lower CPU instruction set version is workable on a newer board.  See
                     38: build.sh and look for aliases for the evbarm port.
                     39: 
1.43      gdt        40: ### Kernels and userland
                     41: 
                     42: The evbarm userland can be used on any system that can run code of the
                     43: CPU type used for the build.  Typically, a particular board requires a
                     44: kernel for that board.
                     45: 
1.27      wiki       46: ### Board specific information
1.38      wiki       47:  - [[Allwinner sunxi family SoCs|Allwinner]]
1.27      wiki       48:  - [[BeagleBone and BeagleBone Black|BeagleBone]]
1.41      wiki       49:  - [[NVIDIA Tegra|Tegra]]
1.27      wiki       50:  - [[ODROID C1 and C1+|ODROID-C1]]
1.40      gdt        51:  - [[Raspberry Pi 1, 2 and 3|Raspberry Pi]]
1.27      wiki       52: 
1.1       mspo       53: """
1.27      wiki       54: 
1.1       mspo       55: supported_hardware="""
1.11      wiki       56: 
1.18      wiki       57: **NOTE**: This list is incomplete. For a full list of configurations, please see the [evbarm kernel configs](http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/arch/evbarm/conf/) directory in CVS.
                     58: 
1.11      wiki       59: [[!toc startlevel=3]]
                     60: 
1.36      sevan      61: ### ADI Engineering **BRH** ("Big Red Head")
1.12      wiki       62: 
                     63: The BRH is an evaluation and development platform for the Intel **i80200**
                     64: XScale processor. The BRH is based on ADI's **BECC** ("Big Endian Companion
                     65: Chip"). The BRH is capable of both big- and little-endian operation, although
1.21      snj        66: NetBSD currently only supports little-endian operation.
1.12      wiki       67: 
                     68: Support for the BRH was written by Jason Thorpe, and contributed by Wasabi
                     69: Systems, Inc.
                     70: 
                     71:  * On-board NS16550-compatible serial ports (_com_)
                     72:  * On-board Intel i82559 Ethernet on the PCI bus (_fxp_)
                     73:  * On-chip timer on the BECC (used as system clock)
                     74:  * Other devices inserted into the PCI slot
1.5       wiki       75: 
1.12      wiki       76: The BRH comes with 128M of SDRAM. Systems with BECC revision 7 or less are
                     77: limited to 64M due to the layout of the PCI DMA windows. Users of these
                     78: systems should obtain an FPGA upgrade from ADI to revision 8 or later of the
                     79: BECC.
1.5       wiki       80: 
1.39      wiki       81: ### Allwinner Technology
1.15      wiki       82: Various boards based on [[Allwinner]] SoCs are supported, including the BananaPi, Cubieboard 2, Cubietruck, Cubieboard 4, and Merrii Hummingbird A31.
1.10      wiki       83: 
1.12      wiki       84: ### Arcom **Viper**
1.1       mspo       85: 
1.12      wiki       86: The Arcom Viper is a single board computer based on the PXA255 XScale
                     87: processor.
1.1       mspo       88: 
1.12      wiki       89: Support for the Arcom Viper was written by Antti Kantee.
1.1       mspo       90: 
1.12      wiki       91:  * On-chip timers (_saost_ used as system clock)
                     92:  * On-chip serial ports (_com_)
1.36      sevan      93:  * On-board SMC91C111 ethernet (_sm_)
1.1       mspo       94: 
1.3       wiki       95: ### ARM, Ltd. **Integrator**
1.1       mspo       96: 
                     97: The Integrator/AP is an ATX form-factor board that is used for development of
                     98: ARM processor-based designs. It supports up to four processors on plug-in core
                     99: modules, and provides clocks, a bus interface, and interrupt support. The
                    100: Integrator/AP also supports logic modules which provide additional
                    101: peripherals, and can accommodate up to three PCI expansion cards. The
                    102: Integrator/AP can also be inserted into a CompactPCI backplane.
                    103: 
                    104: Support for the Integrator was written by Richard Earnshaw, and contributed by
                    105: ARM, Ltd.
                    106: 
1.2       mspo      107:  * PrimeCell PL010 UARTs in the System Controller FPGA (_plcom_)
                    108:  * PrimeCell PL030 Real-time Clock in the System Controller FPGA (_plrtc_)
1.23      ryoon     109:  * PrimeCell PL181 MultiMedia Card Interface
1.2       mspo      110:  * Other devices inserted into the PCI expansion slots
1.1       mspo      111: 
1.12      wiki      112: ### Atmark Techno **Armadillo-9**
                    113: 
                    114: The Armadillo-9 is a single board computer based on the EP9315 processor.
                    115: 
                    116: Support for the Armadillo-9 was written by Katsuomi Hamajima.
                    117: 
                    118:  * On-CPU RS232 UARTs (2) (_epcom_)
                    119:  * On-CPU 10/100 Ethernet MAC (_epe_)
                    120:  * system clock from on-CPU timers (_epclk_)
                    121:  * CompactFlash socket (_eppcic_)
                    122:  * USB 1.1 ports (_ohci_)
                    123: 
1.19      wiki      124: ### BeagleBoard.org **BeagleBoard** and **BeagleBoard-xM**
                    125: The [[BeagleBoard]] is a low-power open-source hardware single-board computer from BeagleBoard.org.
                    126: 
                    127: ### BeagleBoard.org **BeagleBone** and **BeagleBone Black**
                    128: The [[BeagleBone]] is a low-cost credit-card-sized computer from BeagleBoard.org.
1.12      wiki      129: 
                    130: ### Gumstix, Inc. **gumstix**
                    131: 
                    132: The [gumstix](http://www.gumstix.com/) is a small form-factor motherboard
                    133: based on the PXA255 and PXA270 XScale processor. Supports only PXA255 now.
                    134: 
                    135: Support for the gumstix was written by KIYOHARA Takashi.
                    136: 
                    137:  * basix
                    138:  * cfstix
                    139:  * etherstix
                    140:  * netCF
                    141:  * netDUO
                    142:  * netDUO-mmc
1.36      sevan     143:  * netMMC
1.12      wiki      144: 
                    145: When booting, it is necessary to set these with u-boot dynamically.
                    146: 
                    147: <pre> > go 0xa0200000 busheader=basix</pre>
                    148: 
                    149:  * audiostix
                    150:  * console-st (waysmall - STUART)
                    151:  * console-hw (waysmall)
                    152:  * GPSstix (GPS not test)
                    153:  * tweener
                    154: 
1.26      wiki      155: ### Hardkernel ODROID-C1 and ODROID-C1+
1.16      wiki      156: 
                    157: The [[ODROID-C1]] is a quad core Cortex-A5 small form-factor board from Hardkernel co., Ltd.
                    158: 
1.36      sevan     159: ### Intel **DBPXA250** ("Lubbock")
1.12      wiki      160: 
                    161: DBPXA250 (a.k.a. Lubbock) is an evaluation and development platform for the
                    162: Intel **PXA250** XScale Core application processor. More information about the **DBPXA250** can be found at [Intel website](http://www.intel.com/design/pca/applicationsprocessors/swsup/index.htm).
                    163: 
                    164: Support for the **DBPXA250** was written by Hiroyuki Bessho, and contributed
                    165: by Genetec Corp.
                    166: 
                    167:  * On-chip timers (_saost_ used as system clock)
                    168:  * On-chip 2 serial port (_com_)
                    169:  * On-board SMC91C96 ethernet (_sm_)
                    170:  * On-board SA-1111 StrongArm companion chip (_sacc_)
                    171:  * PS/2 keyboard (_pckbd_)
                    172:  * 640x480 LCD (_lcd_)
                    173:  * PCMCIA and CF card slots
                    174: 
1.3       wiki      175: ### Intel **IQ31244**
1.1       mspo      176: 
                    177: The IQ31244 is a development platform for the Intel **IOP321** I/O Processor
                    178: chipset and the Intel **i31244** SATA controller.
                    179: 
                    180: Initial support for the IQ31244 was written by Jason Thorpe, and contributed
                    181: by Wasabi Systems, Inc.
                    182: 
1.2       mspo      183:  * Quad on-board Intel i31244 SATA controllers on the PCI-X bus (_artsata_)
                    184:  * On-board Intel i82546EB Gigabit Ethernet on the PCI-X bus (_wm_)
                    185:  * On-board NS16550-compatible serial port (_com_)
                    186:  * On-chip timers (TMR0 used as system clock)
                    187:  * On-chip Application Accelerator Unit (_iopaau_)
                    188:  * On-chip watchdog timer (_iopwdog_)
                    189:  * On-board compact flash reader (_wdc_)
                    190:  * Other devices inserted into the PCI-X expansion slot
1.1       mspo      191: 
1.3       wiki      192: ### Intel **IQ80310**
1.1       mspo      193: 
                    194: The IQ80310 is the reference platform for the Intel **IOP310** I/O Processor
                    195: chipset, which is comprised of the i80200 XScale processor and the i80312 I/O
                    196: Companion chip.
                    197: 
                    198: Support for the IQ80310 was written by Jason Thorpe and Allen Briggs, and
                    199: contributed by Wasabi Systems, Inc.
                    200: 
1.2       mspo      201:  * On-board Intel i82559 Ethernet on the PCI bus (_fxp_)
                    202:  * On-board timer in the CPLD (used as system clock)
                    203:  * On-board NS16550-compatible serial ports (_com_)
                    204:  * Other devices inserted into the PCI expansion slots
1.1       mspo      205: 
1.3       wiki      206: ### Intel **IQ80321**
1.1       mspo      207: 
                    208: The IQ80321 is the reference platform for the Intel **IOP321** I/O Processor
                    209: (i80321 XScale processor).
                    210: 
                    211: Support for the IQ80321 was written by Jason Thorpe, and contributed by Wasabi
                    212: Systems, Inc.
                    213: 
1.2       mspo      214:  * On-board Intel i82544EI Gigabit Ethernet on the PCI-X bus (_wm_)
                    215:  * On-board NS16550-compatible serial port (_com_)
                    216:  * On-chip timers (TMR0 used as system clock)
                    217:  * On-chip Application Accelerator Unit (_iopaau_)
                    218:  * On-chip watchdog timer (_iopwdog_)
                    219:  * Other devices inserted into the PCI-X expansion slots
1.1       mspo      220: 
1.3       wiki      221: ### Intel **IXM1200**
1.1       mspo      222: 
                    223: The IXM1200 is the reference platform for the Intel **IXP1200** Network
                    224: Processor.
                    225: 
                    226: Support for the IXM1200 was written by Ichiro FUKUHARA and Naoto Shimazaki.
                    227: 
1.2       mspo      228:  * On-board Intel i82559 Ethernet on the PCI bus (_fxp_)
                    229:  * On-board Intel i21555 Non-Transparent PCI-PCI Bridge (_nppb_)
                    230:  * On-chip timers (ixpclk0 used as system clock)
                    231:  * On-chip serial port (_ixpcom_)
1.1       mspo      232: 
1.36      sevan     233: ### NOVATEC **NTNP425B** ("ZAO425")
1.12      wiki      234: 
                    235: NTNP425B is an evaluation and development platform for the Intel **IXP425**
                    236: XScale Core NetworkProcessor. NTNP425B is based on the reference board of
                    237: Intel **IXDP425**. The **NTNP425B** is capable of only big-endian operation.
                    238: Since the library for micro-engine(NPE) offered from Intel Corp. is big-
                    239: endian. More information about the **NTNP425B** can be found on [product
                    240: catalogue of **NTNP425B**(2.5MB,PDF
                    241: file)](http://www.novatec.co.jp/NTNP425BBrochureE.pdf).
                    242: 
                    243: Support for the NTNP425B was written by Ichiro FUKUHARA.
                    244: 
                    245:  * On-chip timers (_ixpclk0_ used as system clock)
                    246:  * On-chip 2 serial port (_ixpcom0_ and _ixpcom1_)
                    247:  * Other devices inserted into the PCI/mPCI slot
                    248:  * On-chip watchdog timer (_ixpwdog_)
                    249: 
1.20      wiki      250: ### NVIDIA Tegra K1
1.37      snj       251: Support for NVIDIA [[Tegra]] K1 SoCs is present in NetBSD-current and
                    252: 8.0_BETA. The Jetson TK1 board is currently supported.
1.20      wiki      253: 
1.40      gdt       254: ### Raspberry Pi Foundation **Raspberry Pi**/**Raspberry Pi 2**/**Raspberry Pi 3**
                    255: The [[Raspberry Pi]] is a low-cost credit-card-sized computer from the Raspberry Pi Foundation.  The Raspberry Pi, Pi 2, and Pi 3 are supported.
1.12      wiki      256: 
1.14      wiki      257: ### Rockchip PX2/RK3066/RK3188/RK3188+
                    258: Various [[Rockchip]] family SoCs are supported by the ROCKCHIP kernel.
                    259: 
1.3       wiki      260: ### Samsung **SMDK2410**
1.1       mspo      261: 
                    262: The SMDK2410 is the reference platform for the Samsung **S3C2410** processor,
                    263: which has an ARM920T core.
                    264: 
                    265: More information on the S3C2410 can be found at [Samsung Electronics web page]
                    266: (http://www.samsung.com/Products/Semiconductor/MobileSoC/ApplicationProcessor/
                    267: ARM9Series/S3C2410/S3C2410.htm).
                    268: 
                    269: Support for the SMDK2410 was written by Hiroyuki Bessho, and contributed by
                    270: Genetec Corp.
                    271: 
1.2       mspo      272:  * On-chip serial ports (_sscom_)
                    273:  * On-chip USB host controller (_ohc_)
                    274:  * On-chip timers (used as system clock)
                    275:  * On-chip SPI (_ssspi_, used for other on-board devices)
                    276:  * 240x320 TFT LCD (_lcd_)
                    277:  * keyboard. (_sskbd_)
1.1       mspo      278: 
1.3       wiki      279: ### Samsung **SMDK2800**
1.1       mspo      280: 
                    281: The SMDK2800 is the reference platform for the **Samsung S3C2800** processor,
                    282: which has an ARM920T core.
                    283: 
                    284: S3C2800 has built-in PCI controller, and SMDK2800 has three PCI slots.
                    285: 
                    286: Support for the SMDK2800 was written by Hiroyuki Bessho, and contributed by
                    287: Fujitsu Component Ltd., and Genetec Corp.
                    288: 
1.2       mspo      289:  * On-chip serial ports (_sscom_)
                    290:  * On-chip Host-PCI bridge (_sspci_)
                    291:  * On-chip timers (used as system clock)
1.36      sevan     292:  * Other devices inserted into the PCI slots
1.1       mspo      293: 
1.12      wiki      294: ### Team ASA, Inc. **Npwr**
1.1       mspo      295: 
1.12      wiki      296: The Npwr is an IOP310-based design targeted at the network-attached storage
                    297: space. The Npwr comes in several configurations (single or dual Gigabit
                    298: Ethernet, single or dual Ultra160 SCSI), and can be purchased as a bare board
                    299: or as a small server appliance. More information on the Npwr can be found at
                    300: the [Team ASA web page](http://www.teamasa.com/).
1.1       mspo      301: 
1.12      wiki      302: Support for the Npwr was written by Jason Thorpe and Allen Briggs, and
                    303: contributed by Wasabi Systems, Inc.
1.1       mspo      304: 
1.12      wiki      305:  * On-board Intel i82544 Gigabit Ethernet on the PCI bus (_wm_)
                    306:  * On-board LSI Logic 53c1010 Ultra160 SCSI on the PCI bus (_siop_)
                    307:  * On-board timer in the CPLD (used as system clock)
                    308:  * On-board NS16550-compatible serial port (_com_)
1.1       mspo      309: 
1.12      wiki      310: ### Technologic Systems **TS-7200**
1.1       mspo      311: 
1.12      wiki      312: The TS-7200 is a low-cost mass-produced PC/104 embedded single board computer
                    313: intended as a general purpose core for real embedded applications. The TS-7200
                    314: uses the Cirrus Logic EP9302 ARM9 system-on-chip and comes with a PC/104 (isa)
                    315: bus and can either boot to CompactFlash or onboard flash. The board also has
                    316: general purpose digital IO and optional multichannel analog-to-digital
                    317: converters. More information on the TS-7200 can be found at [Technologic
                    318: Systems](http://www.embeddedarm.com/epc/ts7200-spec-h.html).
1.1       mspo      319: 
1.12      wiki      320: Support for the TS-7200 was written by Jesse Off
1.1       mspo      321: 
1.12      wiki      322: * On-CPU RS232 UARTs (2) (_epcom_)
                    323: * On-CPU 10/100 Ethernet MAC (_epe_)
                    324: * CompactFlash socket (_wdc_)
                    325: * USB 1.1 ports (2) (_ohci_)
                    326: * Watchdog timer on CPLD (_tspld_)
                    327: * TMP124 high precision temperature sensor via sysctl
                    328: * 64Hz system clock from on-CPU timers (_epclk_)
                    329: * HD44780 2x24 text mode LCD (_tslcd_)
                    330: * 4x4 16 button matrix keypad (_wskbd_)
                    331: * TS-5620 battery backed RTC daughter-card (_tsrtc_)
                    332: * 1,2,4 port serial TS-SER daughter cards (_com_)
                    333: * Up to 4 10Mb TS-ETH10 daughter cards (_tscs_)
                    334: * Other devices inserted into the PC/104 (_isa_) expansion slot
1.1       mspo      335: 
                    336: """
1.13      wiki      337: additional="""
1.22      wiki      338:   * The [NetBSD Diskless HOWTO](http://www.netbsd.org/docs/network/netboot/)
1.36      sevan     339:   * [ Porting NetBSD/evbarm to the Arcom Viper](http://www.cs.hut.fi/~pooka/pubs/EuroBSDCon2005/viper.pdf), presented at EuroBSDCon 2005.
1.1       mspo      340: """
                    341: ]]
                    342: [[!tag tier1port]]

CVSweb for NetBSD wikisrc <wikimaster@NetBSD.org> software: FreeBSD-CVSweb