diff options
author | Tom Rini <trini@konsulko.com> | 2020-10-19 09:29:05 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-19 09:29:05 -0400 |
commit | 7ec87e4192215815b658c3f8b34e4be010103149 (patch) | |
tree | e3236ed54452a5efa60a2081038a480fa8d480bf /arch/arm/mach-at91/arm926ejs/sam9x60_devices.c | |
parent | e3e9bfab46cf61f9a7cd64145faf74be3466a8c3 (diff) | |
parent | dc470834a1ea50749c19ebac2c34e0edb898ab18 (diff) | |
download | u-boot-7ec87e4192215815b658c3f8b34e4be010103149.tar.gz |
Merge tag 'u-boot-atmel-2021.01-b' of https://gitlab.denx.de/u-boot/custodians/u-boot-atmelWIP/19Oct2020
Second set of u-boot-atmel features for 2021.01 cycle:
This feature set brings the rework of the clock tree for sam9x60 SoC.
This makes the clock tree fully compatible with Common Clock Framework
and allows full clock configuration in U-Boot. This means that the
sam9x60 boards can boot now using U-Boot.
This also includes the definitions for sam9x60 SiPs and a divisor fix
for the clock on sama7g5 SoC.
Diffstat (limited to 'arch/arm/mach-at91/arm926ejs/sam9x60_devices.c')
-rw-r--r-- | arch/arm/mach-at91/arm926ejs/sam9x60_devices.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/arm926ejs/sam9x60_devices.c b/arch/arm/mach-at91/arm926ejs/sam9x60_devices.c index d463bbc788..e3d3dd880c 100644 --- a/arch/arm/mach-at91/arm926ejs/sam9x60_devices.c +++ b/arch/arm/mach-at91/arm926ejs/sam9x60_devices.c @@ -44,6 +44,12 @@ char *get_cpu_name(void) switch (extension_id) { case ARCH_EXID_SAM9X60: return "SAM9X60"; + case ARCH_EXID_SAM9X60_D6K: + return "SAM9X60 8MiB SDRAM SiP"; + case ARCH_EXID_SAM9X60_D5M: + return "SAM9X60 64MiB DDR2 SiP"; + case ARCH_EXID_SAM9X60_D1G: + return "SAM9X60 128MiB DDR2 SiP"; default: return "Unknown CPU type"; } |