Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2007 |
| 3 | * Sascha Hauer, Pengutronix |
| 4 | * |
| 5 | * (C) Copyright 2009 Freescale Semiconductor, Inc. |
| 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
| 26 | #include <common.h> |
| 27 | #include <asm/arch/imx-regs.h> |
Stefano Babic | e4d3449 | 2010-03-05 17:54:37 +0100 | [diff] [blame] | 28 | #include <asm/arch/clock.h> |
Fabio Estevam | 77f11a9 | 2011-10-13 05:34:59 +0000 | [diff] [blame] | 29 | #include <asm/arch/sys_proto.h> |
| 30 | |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 31 | #include <asm/errno.h> |
| 32 | #include <asm/io.h> |
| 33 | |
Liu Hui-R64343 | 595f3e5 | 2011-01-03 22:27:35 +0000 | [diff] [blame] | 34 | #if !(defined(CONFIG_MX51) || defined(CONFIG_MX53)) |
Jason Liu | ff9f475 | 2010-10-18 11:09:26 +0800 | [diff] [blame] | 35 | #error "CPU_TYPE not defined" |
| 36 | #endif |
| 37 | |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 38 | u32 get_cpu_rev(void) |
| 39 | { |
Liu Hui-R64343 | 595f3e5 | 2011-01-03 22:27:35 +0000 | [diff] [blame] | 40 | #ifdef CONFIG_MX51 |
| 41 | int system_rev = 0x51000; |
| 42 | #else |
| 43 | int system_rev = 0x53000; |
| 44 | #endif |
Jason Liu | ff9f475 | 2010-10-18 11:09:26 +0800 | [diff] [blame] | 45 | int reg = __raw_readl(ROM_SI_REV); |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 46 | |
Liu Hui-R64343 | 595f3e5 | 2011-01-03 22:27:35 +0000 | [diff] [blame] | 47 | #if defined(CONFIG_MX51) |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 48 | switch (reg) { |
| 49 | case 0x02: |
Jason Liu | ff9f475 | 2010-10-18 11:09:26 +0800 | [diff] [blame] | 50 | system_rev |= CHIP_REV_1_1; |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 51 | break; |
| 52 | case 0x10: |
| 53 | if ((__raw_readl(GPIO1_BASE_ADDR + 0x0) & (0x1 << 22)) == 0) |
Jason Liu | ff9f475 | 2010-10-18 11:09:26 +0800 | [diff] [blame] | 54 | system_rev |= CHIP_REV_2_5; |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 55 | else |
Jason Liu | ff9f475 | 2010-10-18 11:09:26 +0800 | [diff] [blame] | 56 | system_rev |= CHIP_REV_2_0; |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 57 | break; |
| 58 | case 0x20: |
Jason Liu | ff9f475 | 2010-10-18 11:09:26 +0800 | [diff] [blame] | 59 | system_rev |= CHIP_REV_3_0; |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 60 | break; |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 61 | default: |
Jason Liu | ff9f475 | 2010-10-18 11:09:26 +0800 | [diff] [blame] | 62 | system_rev |= CHIP_REV_1_0; |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 63 | break; |
| 64 | } |
Liu Hui-R64343 | 595f3e5 | 2011-01-03 22:27:35 +0000 | [diff] [blame] | 65 | #else |
Fabio Estevam | aa1cb68 | 2011-04-26 10:50:15 +0000 | [diff] [blame] | 66 | if (reg < 0x20) |
Liu Hui-R64343 | 595f3e5 | 2011-01-03 22:27:35 +0000 | [diff] [blame] | 67 | system_rev |= CHIP_REV_1_0; |
Fabio Estevam | aa1cb68 | 2011-04-26 10:50:15 +0000 | [diff] [blame] | 68 | else |
| 69 | system_rev |= reg; |
Liu Hui-R64343 | 595f3e5 | 2011-01-03 22:27:35 +0000 | [diff] [blame] | 70 | #endif |
Stefano Babic | 64fdf45 | 2010-01-20 18:19:32 +0100 | [diff] [blame] | 71 | return system_rev; |
| 72 | } |
| 73 | |
Liu Hui-R64343 | 565e39c | 2010-11-18 23:45:55 +0000 | [diff] [blame] | 74 | #if defined(CONFIG_FEC_MXC) |
| 75 | void imx_get_mac_from_fuse(unsigned char *mac) |
| 76 | { |
| 77 | int i; |
| 78 | struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE; |
| 79 | struct fuse_bank *bank = &iim->bank[1]; |
| 80 | struct fuse_bank1_regs *fuse = |
| 81 | (struct fuse_bank1_regs *)bank->fuse_regs; |
| 82 | |
| 83 | for (i = 0; i < 6; i++) |
| 84 | mac[i] = readl(&fuse->mac_addr[i]) & 0xff; |
| 85 | } |
| 86 | #endif |
| 87 | |
Fabio Estevam | a6e961c | 2011-06-07 07:02:52 +0000 | [diff] [blame] | 88 | void set_chipselect_size(int const cs_size) |
| 89 | { |
| 90 | unsigned int reg; |
| 91 | struct iomuxc *iomuxc_regs = (struct iomuxc *)IOMUXC_BASE_ADDR; |
| 92 | reg = readl(&iomuxc_regs->gpr1); |
| 93 | |
| 94 | switch (cs_size) { |
| 95 | case CS0_128: |
| 96 | reg &= ~0x7; /* CS0=128MB, CS1=0, CS2=0, CS3=0 */ |
| 97 | reg |= 0x5; |
| 98 | break; |
| 99 | case CS0_64M_CS1_64M: |
| 100 | reg &= ~0x3F; /* CS0=64MB, CS1=64MB, CS2=0, CS3=0 */ |
| 101 | reg |= 0x1B; |
| 102 | break; |
| 103 | case CS0_64M_CS1_32M_CS2_32M: |
| 104 | reg &= ~0x1FF; /* CS0=64MB, CS1=32MB, CS2=32MB, CS3=0 */ |
| 105 | reg |= 0x4B; |
| 106 | break; |
| 107 | case CS0_32M_CS1_32M_CS2_32M_CS3_32M: |
| 108 | reg &= ~0xFFF; /* CS0=32MB, CS1=32MB, CS2=32MB, CS3=32MB */ |
| 109 | reg |= 0x249; |
| 110 | break; |
| 111 | default: |
| 112 | printf("Unknown chip select size: %d\n", cs_size); |
| 113 | break; |
| 114 | } |
| 115 | |
| 116 | writel(reg, &iomuxc_regs->gpr1); |
| 117 | } |