Files
retrobsd/sys/pic32/duinomite/Config
Serge Vakulenko 976bf303cc Kernel config utility: add new specification to assign
logical signals to pins. like 'signal "LED_KERNEL" pin RA0'.
2015-09-19 17:09:40 -07:00

69 lines
2.3 KiB
Plaintext

#
# Duinomite and Duinomite-Mega boards
# ===================================
# Console on USB.
# For details, see https://github.com/RetroBSD/retrobsd/wiki/Board-Olimex-Duinomite
#
# To build the kernel, use:
# cd sys/pic32/duinomite
# 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 "DUINOMITE" # Board type
ldscript "maximite/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
# LEDs
signal "LED_KERNEL" pin RB15 # kernel activity indicator
signal "LED_DISK" pin RB12 # disk activity indicator
# Root filesystem at /dev/sd0a, swap at /dev/sd0b
config unix root on sd0a
swap on sd0b
# Console options
options "CONSOLE_DEVICE=ttyUSB0" # Console on USB
# Virtual UART on USB
device uartusb0
options "USB_MAX_EP_NUMBER=3"
options "USB_NUM_STRING_DESCRIPTORS=3"
# SPI ports
controller spi3 # SD card
# microSD card
device sd0 at spi3
pins RD5, RB13 # select pin, enable pin
options "SD0_PORT=3" # at spi3 TODO: delete
options "SD0_CS_PORT=TRISD" # for chip select... TODO: delete
options "SD0_CS_PIN=5" # ...use pin RD5 TODO: delete
signal "SD0_ENA" pin RB13 # SD card enable signal TODO: delete
# General purpose I/O ports
# Flags define a mask of available pins
# The following pins excluded:
# RD1, RD2, RD3, RD5, RB13 - spi3, SD card
device gpio1 flags 0xdfff # port B
device gpio2 flags 0xf000 # port C
device gpio3 flags 0x0fd1 # port D
device gpio4 flags 0x00ff # port E
device gpio5 flags 0x003b # port F
device gpio6 flags 0x03cc # port G
# ADC driver
device adc
# PWM driver
device pwm