Back to home page

LXR

 
 

    


Warning, /bsps/powerpc/gen83xx/README.md is written in an unsupported language. File is not indexed.

0001 gen83xx
0002 =======
0003 ```
0004 BSP NAME:           gen83xx
0005 BOARD:              Freescale MPC8349 board MPC8349EAMDS
0006 BUS:                PCI (unused)
0007 CPU FAMILY:         ppc
0008 CPU:                PowerPC e300 (SW compatible to 603e)
0009 COPROCESSORS:       N/A
0010 MODE:               32 bit mode
0011 
0012 DEBUG MONITOR:      U-Boot 
0013 ```
0014 
0015 PERIPHERALS
0016 -----------
0017 ```
0018 TIMERS:             PPC internal Timebase register
0019   RESOLUTION:         ???
0020 SERIAL PORTS:       2 internal PSCs
0021 REAL-TIME CLOCK:    (not yet supported)
0022 DMA:                none
0023 VIDEO:              none
0024 SCSI:               none
0025 NETWORKING:         2xTSEC triple speed ethernet channels
0026 ```
0027 
0028 DRIVER INFORMATION
0029 ------------------
0030 ```
0031 CLOCK DRIVER:       PPC internal
0032 IOSUPP DRIVER:      N/A
0033 SHMSUPP:            N/A
0034 TIMER DRIVER:       PPC internal
0035 TTY DRIVER:         PPC internal
0036 ```
0037 
0038 STDIO
0039 -----
0040 ```
0041 PORT:               Console port 1
0042 ELECTRICAL:         na
0043 BAUD:               9600
0044 BITS PER CHARACTER: 8
0045 PARITY:             N
0046 STOP BITS:          1
0047 ```
0048 
0049 mpc8313erdb
0050 -----------
0051 SPI
0052 ---
0053 In master mode SCS (SPI_D) cannot be used as GPIO[31].  Unfortunately this pin
0054 is connected to the SD Card slot. See also [1] SPI 5.
0055 
0056 TSEC
0057 ----
0058 The interrupt vector values are switched at the IPIC.  See also [1] IPIC 1.
0059 
0060 REFERENCES:
0061 
0062 [1]     MPC8313ECE Rev. 3, 3/2008: "MPC8313E PowerQUICCâ„¢ II Pro Integrated Host
0063         Processor Device Errata"
0064 
0065 Example U-Boot Sequence
0066 -----------------------
0067 ```
0068 setenv ethact TSEC1
0069 setenv ipaddr 192.168.96.106
0070 setenv serverip 192.168.96.31
0071 tftp 1000000 ticker.img
0072 bootm
0073 ```
0074 Making a U-Boot Image
0075 ---------------------
0076 ```shell
0077 powerpc-rtems4.9-objcopy -O binary ticker.exe ticker.bin
0078 gzip -9 ticker.bin
0079 mkimage -A ppc -O rtems -T kernel -C gzip -a 100 -e 10000 -n "RTEMS
0080 Test" -d ticker.bin.gz ticker.img
0081 ```