sam3x8e: Add initial support for Arduino Due boards

This adds basic support for running on the Atmel SAM3x8e
micro-controllers that are found in the Arudino Due boards.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2016-06-14 14:27:30 -04:00
parent 31c04261c1
commit cc62a3dbf3
10 changed files with 606 additions and 8 deletions

25
src/sam3x8e/Kconfig Normal file
View File

@@ -0,0 +1,25 @@
# Kconfig settings for SAM3x8e processors
if MACH_SAM3X8E
config BOARD_DIRECTORY
string
default "sam3x8e"
config MCU
string
default "sam3x8e"
config CLOCK_FREQ
int
default 42000000 # 84000000/2
config SERIAL
bool
default y
config SERIAL_BAUD
depends on SERIAL
int "Baud rate for serial port"
default 250000
endif