Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Atmel |
| 4 | * Bo Shen <voice.shen@atmel.com> |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Bo Shen | 3d1d9c5 | 2014-12-03 18:02:19 +0800 | [diff] [blame] | 8 | #include <asm/io.h> |
| 9 | #include <asm/arch/at91_common.h> |
Bo Shen | 3d1d9c5 | 2014-12-03 18:02:19 +0800 | [diff] [blame] | 10 | #include <asm/arch/clk.h> |
Bo Shen | e1ec15c | 2014-12-15 13:24:35 +0800 | [diff] [blame] | 11 | #include <asm/arch/sama5_sfr.h> |
Bo Shen | 5864590 | 2014-11-10 15:24:02 +0800 | [diff] [blame] | 12 | #include <asm/arch/sama5d4.h> |
| 13 | |
| 14 | char *get_cpu_name() |
| 15 | { |
| 16 | unsigned int extension_id = get_extension_chip_id(); |
| 17 | |
| 18 | if (cpu_is_sama5d4()) |
| 19 | switch (extension_id) { |
| 20 | case ARCH_EXID_SAMA5D41: |
| 21 | return "SAMA5D41"; |
| 22 | case ARCH_EXID_SAMA5D42: |
| 23 | return "SAMA5D42"; |
| 24 | case ARCH_EXID_SAMA5D43: |
| 25 | return "SAMA5D43"; |
| 26 | case ARCH_EXID_SAMA5D44: |
| 27 | return "SAMA5D44"; |
| 28 | default: |
| 29 | return "Unknown CPU type"; |
| 30 | } |
| 31 | else |
| 32 | return "Unknown CPU type"; |
| 33 | } |
Bo Shen | 3d1d9c5 | 2014-12-03 18:02:19 +0800 | [diff] [blame] | 34 | |
| 35 | #ifdef CONFIG_USB_GADGET_ATMEL_USBA |
| 36 | void at91_udp_hw_init(void) |
| 37 | { |
Bo Shen | 3d1d9c5 | 2014-12-03 18:02:19 +0800 | [diff] [blame] | 38 | /* Enable UPLL clock */ |
Wenyou Yang | b5d886a | 2016-02-02 11:11:52 +0800 | [diff] [blame] | 39 | at91_upll_clk_enable(); |
Bo Shen | 3d1d9c5 | 2014-12-03 18:02:19 +0800 | [diff] [blame] | 40 | /* Enable UDPHS clock */ |
| 41 | at91_periph_clk_enable(ATMEL_ID_UDPHS); |
| 42 | } |
| 43 | #endif |