1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2013 Keymile AG
4 * Valentin Longchamp <valentin.longchamp@keymile.com>
11 #if defined(CONFIG_KMLION1)
12 #define CONFIG_HOSTNAME "kmlion1"
13 #define CONFIG_KM_BOARD_NAME "kmlion1"
16 #elif defined(CONFIG_KMCOGE4)
17 #define CONFIG_HOSTNAME "kmcoge4"
18 #define CONFIG_KM_BOARD_NAME "kmcoge4"
21 #error ("Board not supported")
24 #define CONFIG_KMP204X
26 #include "km/kmp204x-common.h"
28 #if defined(CONFIG_KMLION1)
30 #define CONFIG_SYS_LBAPP1_BASE 0xD0000000
31 #define CONFIG_SYS_LBAPP1_BASE_PHYS 0xFD0000000ull
33 #define CONFIG_SYS_LBAPP1_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_LBAPP1_BASE_PHYS) \
34 | BR_PS_8 /* Port Size 8 bits */ \
35 | BR_DECC_OFF /* no error corr */ \
36 | BR_MS_GPCM /* MSEL = GPCM */ \
39 #define CONFIG_SYS_LBAPP1_OR_PRELIM (OR_AM_256MB /* length 256MB */ \
40 | OR_GPCM_ACS_DIV2 /* LCS 1/2 clk after */ \
41 | OR_GPCM_CSNT /* LCS 1/4 clk before */ \
42 | OR_GPCM_SCY_2 /* 2 clk wait cycles */ \
43 | OR_GPCM_TRLX /* relaxed tmgs */ \
44 | OR_GPCM_EAD) /* extra bus clk cycles */
45 /* Local bus app1 Base Address */
46 #define CONFIG_SYS_BR2_PRELIM CONFIG_SYS_LBAPP1_BR_PRELIM
47 /* Local bus app1 Options */
48 #define CONFIG_SYS_OR2_PRELIM CONFIG_SYS_LBAPP1_OR_PRELIM
52 #define CONFIG_SYS_LBAPP2_BASE 0xE0000000
53 #define CONFIG_SYS_LBAPP2_BASE_PHYS 0xFE0000000ull
55 #define CONFIG_SYS_LBAPP2_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_LBAPP2_BASE_PHYS) \
56 | BR_PS_8 /* Port Size 8 bits */ \
57 | BR_DECC_OFF /* no error corr */ \
58 | BR_MS_GPCM /* MSEL = GPCM */ \
61 #define CONFIG_SYS_LBAPP2_OR_PRELIM (OR_AM_256MB /* length 256MB */ \
62 | OR_GPCM_ACS_DIV2 /* LCS 1/2 clk after */ \
63 | OR_GPCM_CSNT /* LCS 1/4 clk before */ \
64 | OR_GPCM_SCY_2 /* 2 clk wait cycles */ \
65 | OR_GPCM_TRLX /* relaxed tmgs */ \
66 | OR_GPCM_EAD) /* extra bus clk cycles */
67 /* Local bus app2 Base Address */
68 #define CONFIG_SYS_BR3_PRELIM CONFIG_SYS_LBAPP2_BR_PRELIM
69 /* Local bus app2 Options */
70 #define CONFIG_SYS_OR3_PRELIM CONFIG_SYS_LBAPP2_OR_PRELIM
72 #endif /* __CONFIG_H */