Files
retrobsd/sys/pic32/picadillo/Config
Serge Vakulenko b99fcc6c8c Use GPANEL_CLEAR ioctl to switch the display orientation.
Enable gpio driver for Picadillo board.
2015-10-08 14:01:49 -07:00

63 lines
1.9 KiB
Plaintext

#
# 4D Systems Picadillo-35T board
# ==============================
# Console on USB UART port.
# For details, see http://www.4dsystems.com.au/product/Picadillo_35T/
#
# To build the kernel, use:
# cd sys/pic32/picadillo
# kconfig Config
# make clean
# make
#
# Format of this file is described on page:
# http://retrobsd.org/wiki/doku.php/doc/kconfig
#
architecture "pic32"
cpu "PIC32MX7" # Processor variant
board "PICADILLO_35T" # Board type
ldscript "max32/bootloader.ld" # Linker script
# Standard system options
options "CPU_KHZ=80000" # Oscillator frequency of CPU core
options "BUS_KHZ=80000" # Frequency of peripheral bus
options "BUS_DIV=1" # Bus clock divisor 1/2/4/8
# Root filesystem at /dev/sd0a, swap at /dev/sd0b
config unix root on sd0a
swap on sd0b
# Serial UART ports
device uart1 # Serial-to-USB converter
# Console options
options "CONS_MAJOR=UART_MAJOR" # UART device
options "CONS_MINOR=0" # /dev/tty0
# SPI ports
controller spi2 # SD card
controller spi4 # SPI header
# microSD card
device sd0 at spi2 pin RG9 # select pin
options "SD_MHZ=10" # speed 10 MHz
# General purpose I/O ports
# Flags define a mask of available pins
device gpio0 flags 0xc6fd # port A
device gpio1 flags 0x4fff # port B
device gpio2 flags 0x0010 # port C
device gpio3 flags 0xcf0f # port D
device gpio4 flags 0x0300 # port E
device gpio5 flags 0x110c # port F
device gpio6 flags 0xf000 # port G
# ADC driver
device adc
# PWM driver
device pwm
# HX8357 TFT display driver
device hxtft