Skip to content

Commit 927b901

Browse files
Bo Shentrini
Bo Shen
authored andcommittedNov 17, 2014
ARM: atmel: add sama5d4ek board support
The code for this board supports following features: - Boot media support: NAND flash/SD card/SPI flash - Support LCD display - Support ethernet - Support USB mass storage Signed-off-by: Bo Shen <voice.shen@atmel.com> Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
1 parent cabf61c commit 927b901

16 files changed

+868
-9
lines changed
 

‎arch/arm/Kconfig

+5
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,10 @@ config TARGET_SAMA5D3XEK
509509
select CPU_V7
510510
select SUPPORT_SPL
511511

512+
config TARGET_SAMA5D4EK
513+
bool "Support sama5d4ek"
514+
select CPU_V7
515+
512516
config TARGET_BCM28155_AP
513517
bool "Support bcm28155_ap"
514518
select CPU_V7
@@ -844,6 +848,7 @@ source "board/atmel/at91sam9rlek/Kconfig"
844848
source "board/atmel/at91sam9x5ek/Kconfig"
845849
source "board/atmel/sama5d3_xplained/Kconfig"
846850
source "board/atmel/sama5d3xek/Kconfig"
851+
source "board/atmel/sama5d4ek/Kconfig"
847852
source "board/bachmann/ot1200/Kconfig"
848853
source "board/balloon3/Kconfig"
849854
source "board/barco/titanium/Kconfig"

‎arch/arm/cpu/armv7/at91/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#
1010

1111
obj-$(CONFIG_SAMA5D3) += sama5d3_devices.o
12+
obj-$(CONFIG_SAMA5D4) += sama5d4_devices.o
1213
obj-y += clock.o
1314
obj-y += cpu.o
1415
obj-y += reset.o
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* Copyright (C) 2014 Atmel
3+
* Bo Shen <voice.shen@atmel.com>
4+
*
5+
* SPDX-License-Identifier: GPL-2.0+
6+
*/
7+
8+
#include <common.h>
9+
#include <asm/arch/sama5d4.h>
10+
11+
char *get_cpu_name()
12+
{
13+
unsigned int extension_id = get_extension_chip_id();
14+
15+
if (cpu_is_sama5d4())
16+
switch (extension_id) {
17+
case ARCH_EXID_SAMA5D41:
18+
return "SAMA5D41";
19+
case ARCH_EXID_SAMA5D42:
20+
return "SAMA5D42";
21+
case ARCH_EXID_SAMA5D43:
22+
return "SAMA5D43";
23+
case ARCH_EXID_SAMA5D44:
24+
return "SAMA5D44";
25+
default:
26+
return "Unknown CPU type";
27+
}
28+
else
29+
return "Unknown CPU type";
30+
}

‎arch/arm/cpu/armv7/at91/timer.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ int timer_init(void)
6565
/* Enable PITC */
6666
writel(TIMER_LOAD_VAL | AT91_PIT_MR_EN , &pit->mr);
6767

68-
gd->arch.timer_rate_hz = gd->arch.mck_rate_hz / 16;
68+
gd->arch.timer_rate_hz = get_pit_clk_rate() / 16;
69+
6970
gd->arch.tbu = 0;
7071
gd->arch.tbl = 0;
7172

‎arch/arm/include/asm/arch-at91/at91_pmc.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ typedef struct at91_pmc {
7878
#define AT91_PMC_PLLXR_DIV(x) (x & 0xFF)
7979
#define AT91_PMC_PLLXR_PLLCOUNT(x) ((x & 0x3F) << 8)
8080
#define AT91_PMC_PLLXR_OUT(x) ((x & 0x03) << 14)
81-
#ifdef CONFIG_SAMA5D3
81+
#if defined(CONFIG_SAMA5D3) || defined(CONFIG_SAMA5D4)
8282
#define AT91_PMC_PLLXR_MUL(x) ((x & 0x7F) << 18)
8383
#else
8484
#define AT91_PMC_PLLXR_MUL(x) ((x & 0x7FF) << 16)
@@ -97,7 +97,7 @@ typedef struct at91_pmc {
9797
#define AT91_PMC_MCKR_CSS_PLLB 0x00000003
9898
#define AT91_PMC_MCKR_CSS_MASK 0x00000003
9999

100-
#ifdef CONFIG_SAMA5D3
100+
#if defined(CONFIG_SAMA5D3) || defined(CONFIG_SAMA5D4)
101101
#define AT91_PMC_MCKR_PRES_1 0x00000000
102102
#define AT91_PMC_MCKR_PRES_2 0x00000010
103103
#define AT91_PMC_MCKR_PRES_4 0x00000020
@@ -126,7 +126,7 @@ typedef struct at91_pmc {
126126
#else
127127
#define AT91_PMC_MCKR_MDIV_1 0x00000000
128128
#define AT91_PMC_MCKR_MDIV_2 0x00000100
129-
#ifdef CONFIG_SAMA5D3
129+
#if defined(CONFIG_SAMA5D3) || defined(CONFIG_SAMA5D4)
130130
#define AT91_PMC_MCKR_MDIV_3 0x00000300
131131
#endif
132132
#define AT91_PMC_MCKR_MDIV_4 0x00000200
@@ -137,6 +137,8 @@ typedef struct at91_pmc {
137137
#define AT91_PMC_MCKR_PLLADIV_1 0x00000000
138138
#define AT91_PMC_MCKR_PLLADIV_2 0x00001000
139139

140+
#define AT91_PMC_MCKR_H32MXDIV 0x01000000
141+
140142
#define AT91_PMC_IXR_MOSCS 0x00000001
141143
#define AT91_PMC_IXR_LOCKA 0x00000002
142144
#define AT91_PMC_IXR_LOCKB 0x00000004

‎arch/arm/include/asm/arch-at91/clk.h

+43-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#define __ASM_ARM_ARCH_CLK_H__
1111

1212
#include <asm/arch/hardware.h>
13+
#include <asm/arch/at91_pmc.h>
1314
#include <asm/global_data.h>
1415

1516
static inline unsigned long get_cpu_clk_rate(void)
@@ -48,14 +49,34 @@ static inline u32 get_pllb_init(void)
4849
return gd->arch.at91_pllb_usb_init;
4950
}
5051

52+
#ifdef CPU_HAS_H32MXDIV
53+
static inline unsigned int get_h32mxdiv(void)
54+
{
55+
struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
56+
57+
return readl(&pmc->mckr) & AT91_PMC_MCKR_H32MXDIV;
58+
}
59+
#else
60+
static inline unsigned int get_h32mxdiv(void)
61+
{
62+
return 0;
63+
}
64+
#endif
65+
5166
static inline unsigned long get_macb_pclk_rate(unsigned int dev_id)
5267
{
53-
return get_mck_clk_rate();
68+
if (get_h32mxdiv())
69+
return get_mck_clk_rate() / 2;
70+
else
71+
return get_mck_clk_rate();
5472
}
5573

5674
static inline unsigned long get_usart_clk_rate(unsigned int dev_id)
5775
{
58-
return get_mck_clk_rate();
76+
if (get_h32mxdiv())
77+
return get_mck_clk_rate() / 2;
78+
else
79+
return get_mck_clk_rate();
5980
}
6081

6182
static inline unsigned long get_lcdc_clk_rate(unsigned int dev_id)
@@ -65,17 +86,34 @@ static inline unsigned long get_lcdc_clk_rate(unsigned int dev_id)
6586

6687
static inline unsigned long get_spi_clk_rate(unsigned int dev_id)
6788
{
68-
return get_mck_clk_rate();
89+
if (get_h32mxdiv())
90+
return get_mck_clk_rate() / 2;
91+
else
92+
return get_mck_clk_rate();
6993
}
7094

7195
static inline unsigned long get_twi_clk_rate(unsigned int dev_id)
7296
{
73-
return get_mck_clk_rate();
97+
if (get_h32mxdiv())
98+
return get_mck_clk_rate() / 2;
99+
else
100+
return get_mck_clk_rate();
74101
}
75102

76103
static inline unsigned long get_mci_clk_rate(void)
77104
{
78-
return get_mck_clk_rate();
105+
if (get_h32mxdiv())
106+
return get_mck_clk_rate() / 2;
107+
else
108+
return get_mck_clk_rate();
109+
}
110+
111+
static inline unsigned long get_pit_clk_rate(void)
112+
{
113+
if (get_h32mxdiv())
114+
return get_mck_clk_rate() / 2;
115+
else
116+
return get_mck_clk_rate();
79117
}
80118

81119
int at91_clock_init(unsigned long main_clock);

‎arch/arm/include/asm/arch-at91/hardware.h

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
# include <asm/arch/at91cap9.h>
2828
#elif defined(CONFIG_SAMA5D3)
2929
# include <asm/arch/sama5d3.h>
30+
#elif defined(CONFIG_SAMA5D4)
31+
# include <asm/arch/sama5d4.h>
3032
#else
3133
# error "Unsupported AT91 processor"
3234
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.