Vladimir Zapolskiy | 52f69f8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Common definitions for LPC32XX board configurations |
| 3 | * |
Vladimir Zapolskiy | 0ce3f1f | 2015-02-12 00:24:20 +0200 | [diff] [blame] | 4 | * Copyright (C) 2011-2015 Vladimir Zapolskiy <vz@mleia.com> |
Vladimir Zapolskiy | 52f69f8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Vladimir Zapolskiy | 52f69f8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _LPC32XX_CONFIG_H |
| 10 | #define _LPC32XX_CONFIG_H |
| 11 | |
Vladimir Zapolskiy | 0ce3f1f | 2015-02-12 00:24:20 +0200 | [diff] [blame] | 12 | #define CONFIG_SYS_GENERIC_BOARD |
| 13 | |
Vladimir Zapolskiy | 52f69f8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 14 | /* Basic CPU architecture */ |
Vladimir Zapolskiy | 52f69f8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 15 | #define CONFIG_ARCH_CPU_INIT |
| 16 | |
| 17 | #define CONFIG_NR_DRAM_BANKS_MAX 2 |
| 18 | |
Vladimir Zapolskiy | 52f69f8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 19 | /* UART configuration */ |
| 20 | #if (CONFIG_SYS_LPC32XX_UART >= 3) && (CONFIG_SYS_LPC32XX_UART <= 6) |
| 21 | #define CONFIG_SYS_NS16550_SERIAL |
| 22 | #define CONFIG_CONS_INDEX (CONFIG_SYS_LPC32XX_UART - 2) |
| 23 | #elif (CONFIG_SYS_LPC32XX_UART == 1) || (CONFIG_SYS_LPC32XX_UART == 2) || \ |
| 24 | (CONFIG_SYS_LPC32XX_UART == 7) |
| 25 | #define CONFIG_LPC32XX_HSUART |
| 26 | #else |
| 27 | #error "define CONFIG_SYS_LPC32XX_UART in the range from 1 to 7" |
| 28 | #endif |
| 29 | |
| 30 | #if defined(CONFIG_SYS_NS16550_SERIAL) |
| 31 | #define CONFIG_SYS_NS16550 |
| 32 | |
| 33 | #define CONFIG_SYS_NS16550_REG_SIZE -4 |
| 34 | #define CONFIG_SYS_NS16550_CLK get_serial_clock() |
| 35 | |
| 36 | #define CONFIG_SYS_NS16550_COM1 UART3_BASE |
| 37 | #define CONFIG_SYS_NS16550_COM2 UART4_BASE |
| 38 | #define CONFIG_SYS_NS16550_COM3 UART5_BASE |
| 39 | #define CONFIG_SYS_NS16550_COM4 UART6_BASE |
| 40 | #endif |
| 41 | |
| 42 | #if defined(CONFIG_LPC32XX_HSUART) |
| 43 | #if CONFIG_SYS_LPC32XX_UART == 1 |
| 44 | #define HS_UART_BASE HS_UART1_BASE |
| 45 | #elif CONFIG_SYS_LPC32XX_UART == 2 |
| 46 | #define HS_UART_BASE HS_UART2_BASE |
| 47 | #else /* CONFIG_SYS_LPC32XX_UART == 7 */ |
| 48 | #define HS_UART_BASE HS_UART7_BASE |
| 49 | #endif |
| 50 | #endif |
| 51 | |
| 52 | #define CONFIG_SYS_BAUDRATE_TABLE \ |
| 53 | { 9600, 19200, 38400, 57600, 115200, 230400, 460800 } |
| 54 | |
Albert ARIBAUD \(3ADEV\) | ac2916a | 2015-03-31 11:40:43 +0200 | [diff] [blame] | 55 | /* Ethernet */ |
| 56 | #define LPC32XX_ETH_BASE ETHERNET_BASE |
| 57 | |
Vladimir Zapolskiy | 327f0d2 | 2015-08-11 19:57:09 +0300 | [diff] [blame^] | 58 | /* NAND */ |
| 59 | #if defined(CONFIG_NAND_LPC32XX_SLC) |
| 60 | #define NAND_LARGE_BLOCK_PAGE_SIZE 0x800 |
| 61 | #define NAND_SMALL_BLOCK_PAGE_SIZE 0x200 |
| 62 | |
| 63 | #if !defined(CONFIG_SYS_NAND_PAGE_SIZE) |
| 64 | #define CONFIG_SYS_NAND_PAGE_SIZE NAND_LARGE_BLOCK_PAGE_SIZE |
| 65 | #endif |
| 66 | |
| 67 | #if (CONFIG_SYS_NAND_PAGE_SIZE == NAND_LARGE_BLOCK_PAGE_SIZE) |
| 68 | #define CONFIG_SYS_NAND_OOBSIZE 64 |
| 69 | #define CONFIG_SYS_NAND_ECCPOS { 40, 41, 42, 43, 44, 45, 46, 47, \ |
| 70 | 48, 49, 50, 51, 52, 53, 54, 55, \ |
| 71 | 56, 57, 58, 59, 60, 61, 62, 63, } |
| 72 | #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS |
| 73 | #elif (CONFIG_SYS_NAND_PAGE_SIZE == NAND_SMALL_BLOCK_PAGE_SIZE) |
| 74 | #define CONFIG_SYS_NAND_OOBSIZE 16 |
| 75 | #define CONFIG_SYS_NAND_ECCPOS { 10, 11, 12, 13, 14, 15, } |
| 76 | #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0 |
| 77 | #else |
| 78 | #error "CONFIG_SYS_NAND_PAGE_SIZE set to an invalid value" |
| 79 | #endif |
| 80 | |
| 81 | #define CONFIG_SYS_NAND_ECCSIZE 0x100 |
| 82 | #define CONFIG_SYS_NAND_ECCBYTES 3 |
| 83 | #define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \ |
| 84 | CONFIG_SYS_NAND_PAGE_SIZE) |
| 85 | #endif /* CONFIG_NAND_LPC32XX_SLC */ |
| 86 | |
Vladimir Zapolskiy | 52f69f8 | 2012-04-19 04:33:08 +0000 | [diff] [blame] | 87 | /* NOR Flash */ |
| 88 | #if defined(CONFIG_SYS_FLASH_CFI) |
| 89 | #define CONFIG_FLASH_CFI_DRIVER |
| 90 | #define CONFIG_SYS_FLASH_PROTECTION |
| 91 | #endif |
| 92 | |
| 93 | #endif /* _LPC32XX_CONFIG_H */ |