Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007-2011 |
| 3 | * Allwinner Technology Co., Ltd. <www.allwinnertech.com> |
| 4 | * Tom Cubie <tangliang@allwinnertech.com> |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0+ |
| 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <asm/io.h> |
| 11 | #include <asm/arch/cpu.h> |
Hans de Goede | 10191ed | 2014-11-15 22:55:53 +0100 | [diff] [blame] | 12 | #include <asm/arch/clock.h> |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 13 | #include <axp_pmic.h> |
Hans de Goede | 1871a8c | 2015-01-13 19:25:06 +0100 | [diff] [blame] | 14 | #include <errno.h> |
Hans de Goede | 10191ed | 2014-11-15 22:55:53 +0100 | [diff] [blame] | 15 | |
| 16 | #ifdef CONFIG_MACH_SUN6I |
| 17 | int sunxi_get_ss_bonding_id(void) |
| 18 | { |
| 19 | struct sunxi_ccm_reg * const ccm = |
| 20 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
| 21 | static int bonding_id = -1; |
| 22 | |
| 23 | if (bonding_id != -1) |
| 24 | return bonding_id; |
| 25 | |
| 26 | /* Enable Security System */ |
| 27 | setbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_SS); |
| 28 | setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_SS); |
| 29 | |
| 30 | bonding_id = readl(SUNXI_SS_BASE); |
| 31 | bonding_id = (bonding_id >> 16) & 0x7; |
| 32 | |
| 33 | /* Disable Security System again */ |
| 34 | clrbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_SS); |
| 35 | clrbits_le32(&ccm->ahb_reset0_cfg, 1 << AHB_RESET_OFFSET_SS); |
| 36 | |
| 37 | return bonding_id; |
| 38 | } |
| 39 | #endif |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 40 | |
Hans de Goede | c74384c | 2016-03-24 22:38:23 +0100 | [diff] [blame] | 41 | #ifdef CONFIG_MACH_SUN8I |
| 42 | uint sunxi_get_sram_id(void) |
| 43 | { |
| 44 | uint id; |
| 45 | |
| 46 | /* Unlock sram info reg, read it, relock */ |
| 47 | setbits_le32(SUNXI_SRAMC_BASE + 0x24, (1 << 15)); |
| 48 | id = readl(SUNXI_SRAMC_BASE + 0x24) >> 16; |
| 49 | clrbits_le32(SUNXI_SRAMC_BASE + 0x24, (1 << 15)); |
| 50 | |
| 51 | return id; |
| 52 | } |
| 53 | #endif |
| 54 | |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 55 | #ifdef CONFIG_DISPLAY_CPUINFO |
| 56 | int print_cpuinfo(void) |
| 57 | { |
Ian Campbell | ed41e62 | 2014-10-24 21:20:47 +0100 | [diff] [blame] | 58 | #ifdef CONFIG_MACH_SUN4I |
Hans de Goede | 745325a | 2014-06-09 11:36:57 +0200 | [diff] [blame] | 59 | puts("CPU: Allwinner A10 (SUN4I)\n"); |
Ian Campbell | ed41e62 | 2014-10-24 21:20:47 +0100 | [diff] [blame] | 60 | #elif defined CONFIG_MACH_SUN5I |
Hans de Goede | f84269c | 2014-06-09 11:36:58 +0200 | [diff] [blame] | 61 | u32 val = readl(SUNXI_SID_BASE + 0x08); |
| 62 | switch ((val >> 12) & 0xf) { |
| 63 | case 0: puts("CPU: Allwinner A12 (SUN5I)\n"); break; |
| 64 | case 3: puts("CPU: Allwinner A13 (SUN5I)\n"); break; |
| 65 | case 7: puts("CPU: Allwinner A10s (SUN5I)\n"); break; |
| 66 | default: puts("CPU: Allwinner A1X (SUN5I)\n"); |
| 67 | } |
Ian Campbell | ed41e62 | 2014-10-24 21:20:47 +0100 | [diff] [blame] | 68 | #elif defined CONFIG_MACH_SUN6I |
Hans de Goede | 10191ed | 2014-11-15 22:55:53 +0100 | [diff] [blame] | 69 | switch (sunxi_get_ss_bonding_id()) { |
| 70 | case SUNXI_SS_BOND_ID_A31: |
| 71 | puts("CPU: Allwinner A31 (SUN6I)\n"); |
| 72 | break; |
| 73 | case SUNXI_SS_BOND_ID_A31S: |
| 74 | puts("CPU: Allwinner A31s (SUN6I)\n"); |
| 75 | break; |
| 76 | default: |
| 77 | printf("CPU: Allwinner A31? (SUN6I, id: %d)\n", |
| 78 | sunxi_get_ss_bonding_id()); |
| 79 | } |
Ian Campbell | ed41e62 | 2014-10-24 21:20:47 +0100 | [diff] [blame] | 80 | #elif defined CONFIG_MACH_SUN7I |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 81 | puts("CPU: Allwinner A20 (SUN7I)\n"); |
Hans de Goede | 5e6bacd | 2015-04-06 20:55:39 +0200 | [diff] [blame] | 82 | #elif defined CONFIG_MACH_SUN8I_A23 |
Hans de Goede | c74384c | 2016-03-24 22:38:23 +0100 | [diff] [blame] | 83 | printf("CPU: Allwinner A23 (SUN8I %04x)\n", sunxi_get_sram_id()); |
Vishnu Patekar | 8c3dacf | 2015-03-01 23:47:48 +0530 | [diff] [blame] | 84 | #elif defined CONFIG_MACH_SUN8I_A33 |
Hans de Goede | c74384c | 2016-03-24 22:38:23 +0100 | [diff] [blame] | 85 | printf("CPU: Allwinner A33 (SUN8I %04x)\n", sunxi_get_sram_id()); |
| 86 | #elif defined CONFIG_MACH_SUN8I_A83T |
| 87 | printf("CPU: Allwinner A83T (SUN8I %04x)\n", sunxi_get_sram_id()); |
Jens Kuske | 1c27b7d | 2015-11-17 15:12:58 +0100 | [diff] [blame] | 88 | #elif defined CONFIG_MACH_SUN8I_H3 |
Hans de Goede | c74384c | 2016-03-24 22:38:23 +0100 | [diff] [blame] | 89 | printf("CPU: Allwinner H3 (SUN8I %04x)\n", sunxi_get_sram_id()); |
Hans de Goede | 1871a8c | 2015-01-13 19:25:06 +0100 | [diff] [blame] | 90 | #elif defined CONFIG_MACH_SUN9I |
| 91 | puts("CPU: Allwinner A80 (SUN9I)\n"); |
Siarhei Siamashka | d96ebc4 | 2016-03-29 17:29:10 +0200 | [diff] [blame] | 92 | #elif defined CONFIG_MACH_SUN50I |
| 93 | puts("CPU: Allwinner A64 (SUN50I)\n"); |
Hans de Goede | 745325a | 2014-06-09 11:36:57 +0200 | [diff] [blame] | 94 | #else |
| 95 | #warning Please update cpu_info.c with correct CPU information |
| 96 | puts("CPU: SUNXI Family\n"); |
| 97 | #endif |
Ian Campbell | cba69ee | 2014-05-05 11:52:26 +0100 | [diff] [blame] | 98 | return 0; |
| 99 | } |
| 100 | #endif |
Hans de Goede | cac5b1c | 2014-11-26 00:04:24 +0100 | [diff] [blame] | 101 | |
| 102 | int sunxi_get_sid(unsigned int *sid) |
| 103 | { |
Hans de Goede | cac5b1c | 2014-11-26 00:04:24 +0100 | [diff] [blame] | 104 | #ifdef CONFIG_AXP221_POWER |
Hans de Goede | 6944aff | 2015-10-03 15:18:33 +0200 | [diff] [blame] | 105 | return axp_get_sid(sid); |
Hans de Goede | 813598e | 2015-05-19 23:34:00 +0200 | [diff] [blame] | 106 | #elif defined SUNXI_SID_BASE |
Hans de Goede | cac5b1c | 2014-11-26 00:04:24 +0100 | [diff] [blame] | 107 | int i; |
| 108 | |
| 109 | for (i = 0; i< 4; i++) |
Alexander Graf | 0ea5a04 | 2016-03-29 17:29:09 +0200 | [diff] [blame] | 110 | sid[i] = readl((ulong)SUNXI_SID_BASE + 4 * i); |
Hans de Goede | cac5b1c | 2014-11-26 00:04:24 +0100 | [diff] [blame] | 111 | |
| 112 | return 0; |
Hans de Goede | 813598e | 2015-05-19 23:34:00 +0200 | [diff] [blame] | 113 | #else |
| 114 | return -ENODEV; |
Hans de Goede | cac5b1c | 2014-11-26 00:04:24 +0100 | [diff] [blame] | 115 | #endif |
| 116 | } |