aboutsummaryrefslogtreecommitdiffstats
path: root/src/lpc176x/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/lpc176x/Kconfig')
-rw-r--r--src/lpc176x/Kconfig34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/lpc176x/Kconfig b/src/lpc176x/Kconfig
new file mode 100644
index 00000000..d9f15dd1
--- /dev/null
+++ b/src/lpc176x/Kconfig
@@ -0,0 +1,34 @@
+# Kconfig settings for LPC176x processors
+
+if MACH_LPC176X
+
+config LPC_SELECT
+ bool
+ default y
+
+config BOARD_DIRECTORY
+ string
+ default "lpc176x"
+
+choice
+ prompt "Processor model"
+ config MACH_LPC1768
+ bool "lpc1768 (100 Mhz)"
+ config MACH_LPC1769
+ bool "lpc1769 (120 Mhz)"
+endchoice
+
+config CLOCK_FREQ
+ int
+ default 25000000 if MACH_LPC1768 # 100000000 / 4
+ default 30000000 if MACH_LPC1769 # 120000000 / 4
+
+config SERIAL
+ bool
+ default y
+config SERIAL_BAUD
+ depends on SERIAL
+ int "Baud rate for serial port"
+ default 250000
+
+endif