Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 2 | /* |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 3 | * (C) 2005, 2006 Red Hat Inc. |
| 4 | * |
| 5 | * Author: David Woodhouse <dwmw2@infradead.org> |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 6 | * Tom Sylla <tom.sylla@amd.com> |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 7 | * |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 8 | * Overview: |
David Woodhouse | c9ac5977 | 2006-11-30 08:17:38 +0000 | [diff] [blame] | 9 | * This is a device driver for the NAND flash controller found on |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 10 | * the AMD CS5535/CS5536 companion chipsets for the Geode processor. |
Mart Raudsepp | 641f436 | 2008-02-09 08:16:36 +0000 | [diff] [blame] | 11 | * mtd-id for command line partitioning is cs553x_nand_cs[0-3] |
| 12 | * where 0-3 reflects the chip select for NAND. |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 13 | */ |
| 14 | |
Mart Raudsepp | 641f436 | 2008-02-09 08:16:36 +0000 | [diff] [blame] | 15 | #include <linux/kernel.h> |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 16 | #include <linux/slab.h> |
| 17 | #include <linux/init.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/delay.h> |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 20 | #include <linux/mtd/mtd.h> |
Boris Brezillon | d4092d7 | 2017-08-04 17:29:10 +0200 | [diff] [blame] | 21 | #include <linux/mtd/rawnand.h> |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 22 | #include <linux/mtd/nand_ecc.h> |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 23 | #include <linux/mtd/partitions.h> |
| 24 | |
| 25 | #include <asm/msr.h> |
| 26 | #include <asm/io.h> |
| 27 | |
| 28 | #define NR_CS553X_CONTROLLERS 4 |
| 29 | |
David Woodhouse | e4d222f | 2006-05-26 02:06:27 +0100 | [diff] [blame] | 30 | #define MSR_DIVIL_GLD_CAP 0x51400000 /* DIVIL capabilitiies */ |
| 31 | #define CAP_CS5535 0x2df000ULL |
| 32 | #define CAP_CS5536 0x5df500ULL |
| 33 | |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 34 | /* NAND Timing MSRs */ |
| 35 | #define MSR_NANDF_DATA 0x5140001b /* NAND Flash Data Timing MSR */ |
| 36 | #define MSR_NANDF_CTL 0x5140001c /* NAND Flash Control Timing */ |
| 37 | #define MSR_NANDF_RSVD 0x5140001d /* Reserved */ |
| 38 | |
| 39 | /* NAND BAR MSRs */ |
| 40 | #define MSR_DIVIL_LBAR_FLSH0 0x51400010 /* Flash Chip Select 0 */ |
| 41 | #define MSR_DIVIL_LBAR_FLSH1 0x51400011 /* Flash Chip Select 1 */ |
| 42 | #define MSR_DIVIL_LBAR_FLSH2 0x51400012 /* Flash Chip Select 2 */ |
| 43 | #define MSR_DIVIL_LBAR_FLSH3 0x51400013 /* Flash Chip Select 3 */ |
| 44 | /* Each made up of... */ |
| 45 | #define FLSH_LBAR_EN (1ULL<<32) |
| 46 | #define FLSH_NOR_NAND (1ULL<<33) /* 1 for NAND */ |
| 47 | #define FLSH_MEM_IO (1ULL<<34) /* 1 for MMIO */ |
| 48 | /* I/O BARs have BASE_ADDR in bits 15:4, IO_MASK in 47:36 */ |
| 49 | /* MMIO BARs have BASE_ADDR in bits 31:12, MEM_MASK in 63:44 */ |
| 50 | |
| 51 | /* Pin function selection MSR (IDE vs. flash on the IDE pins) */ |
| 52 | #define MSR_DIVIL_BALL_OPTS 0x51400015 |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 53 | #define PIN_OPT_IDE (1<<0) /* 0 for flash, 1 for IDE */ |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 54 | |
| 55 | /* Registers within the NAND flash controller BAR -- memory mapped */ |
| 56 | #define MM_NAND_DATA 0x00 /* 0 to 0x7ff, in fact */ |
| 57 | #define MM_NAND_CTL 0x800 /* Any even address 0x800-0x80e */ |
| 58 | #define MM_NAND_IO 0x801 /* Any odd address 0x801-0x80f */ |
| 59 | #define MM_NAND_STS 0x810 |
| 60 | #define MM_NAND_ECC_LSB 0x811 |
| 61 | #define MM_NAND_ECC_MSB 0x812 |
| 62 | #define MM_NAND_ECC_COL 0x813 |
| 63 | #define MM_NAND_LAC 0x814 |
| 64 | #define MM_NAND_ECC_CTL 0x815 |
| 65 | |
| 66 | /* Registers within the NAND flash controller BAR -- I/O mapped */ |
| 67 | #define IO_NAND_DATA 0x00 /* 0 to 3, in fact */ |
| 68 | #define IO_NAND_CTL 0x04 |
| 69 | #define IO_NAND_IO 0x05 |
| 70 | #define IO_NAND_STS 0x06 |
| 71 | #define IO_NAND_ECC_CTL 0x08 |
| 72 | #define IO_NAND_ECC_LSB 0x09 |
| 73 | #define IO_NAND_ECC_MSB 0x0a |
| 74 | #define IO_NAND_ECC_COL 0x0b |
| 75 | #define IO_NAND_LAC 0x0c |
| 76 | |
| 77 | #define CS_NAND_CTL_DIST_EN (1<<4) /* Enable NAND Distract interrupt */ |
| 78 | #define CS_NAND_CTL_RDY_INT_MASK (1<<3) /* Enable RDY/BUSY# interrupt */ |
| 79 | #define CS_NAND_CTL_ALE (1<<2) |
| 80 | #define CS_NAND_CTL_CLE (1<<1) |
| 81 | #define CS_NAND_CTL_CE (1<<0) /* Keep low; 1 to reset */ |
| 82 | |
| 83 | #define CS_NAND_STS_FLASH_RDY (1<<3) |
| 84 | #define CS_NAND_CTLR_BUSY (1<<2) |
| 85 | #define CS_NAND_CMD_COMP (1<<1) |
| 86 | #define CS_NAND_DIST_ST (1<<0) |
| 87 | |
| 88 | #define CS_NAND_ECC_PARITY (1<<2) |
| 89 | #define CS_NAND_ECC_CLRECC (1<<1) |
| 90 | #define CS_NAND_ECC_ENECC (1<<0) |
| 91 | |
Boris Brezillon | 7e53432 | 2018-09-06 14:05:22 +0200 | [diff] [blame] | 92 | static void cs553x_read_buf(struct nand_chip *this, u_char *buf, int len) |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 93 | { |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 94 | while (unlikely(len > 0x800)) { |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 95 | memcpy_fromio(buf, this->legacy.IO_ADDR_R, 0x800); |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 96 | buf += 0x800; |
| 97 | len -= 0x800; |
| 98 | } |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 99 | memcpy_fromio(buf, this->legacy.IO_ADDR_R, len); |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 100 | } |
| 101 | |
Boris Brezillon | c0739d8 | 2018-09-06 14:05:23 +0200 | [diff] [blame] | 102 | static void cs553x_write_buf(struct nand_chip *this, const u_char *buf, int len) |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 103 | { |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 104 | while (unlikely(len > 0x800)) { |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 105 | memcpy_toio(this->legacy.IO_ADDR_R, buf, 0x800); |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 106 | buf += 0x800; |
| 107 | len -= 0x800; |
| 108 | } |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 109 | memcpy_toio(this->legacy.IO_ADDR_R, buf, len); |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 110 | } |
| 111 | |
Boris Brezillon | 7e53432 | 2018-09-06 14:05:22 +0200 | [diff] [blame] | 112 | static unsigned char cs553x_read_byte(struct nand_chip *this) |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 113 | { |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 114 | return readb(this->legacy.IO_ADDR_R); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 115 | } |
| 116 | |
Boris Brezillon | c0739d8 | 2018-09-06 14:05:23 +0200 | [diff] [blame] | 117 | static void cs553x_write_byte(struct nand_chip *this, u_char byte) |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 118 | { |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 119 | int i = 100000; |
| 120 | |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 121 | while (i && readb(this->legacy.IO_ADDR_R + MM_NAND_STS) & CS_NAND_CTLR_BUSY) { |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 122 | udelay(1); |
| 123 | i--; |
| 124 | } |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 125 | writeb(byte, this->legacy.IO_ADDR_W + 0x801); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 126 | } |
| 127 | |
Boris Brezillon | 0f808c1 | 2018-09-06 14:05:26 +0200 | [diff] [blame] | 128 | static void cs553x_hwcontrol(struct nand_chip *this, int cmd, |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 129 | unsigned int ctrl) |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 130 | { |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 131 | void __iomem *mmio_base = this->legacy.IO_ADDR_R; |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 132 | if (ctrl & NAND_CTRL_CHANGE) { |
| 133 | unsigned char ctl = (ctrl & ~NAND_CTRL_CHANGE ) ^ 0x01; |
| 134 | writeb(ctl, mmio_base + MM_NAND_CTL); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 135 | } |
Thomas Gleixner | 7abd3ef | 2006-05-23 23:25:53 +0200 | [diff] [blame] | 136 | if (cmd != NAND_CMD_NONE) |
Boris Brezillon | c0739d8 | 2018-09-06 14:05:23 +0200 | [diff] [blame] | 137 | cs553x_write_byte(this, cmd); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 138 | } |
| 139 | |
Boris Brezillon | 50a487e | 2018-09-06 14:05:27 +0200 | [diff] [blame] | 140 | static int cs553x_device_ready(struct nand_chip *this) |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 141 | { |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 142 | void __iomem *mmio_base = this->legacy.IO_ADDR_R; |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 143 | unsigned char foo = readb(mmio_base + MM_NAND_STS); |
| 144 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 145 | return (foo & CS_NAND_STS_FLASH_RDY) && !(foo & CS_NAND_CTLR_BUSY); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 146 | } |
| 147 | |
Boris Brezillon | ec47636 | 2018-09-06 14:05:17 +0200 | [diff] [blame] | 148 | static void cs_enable_hwecc(struct nand_chip *this, int mode) |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 149 | { |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 150 | void __iomem *mmio_base = this->legacy.IO_ADDR_R; |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 151 | |
| 152 | writeb(0x07, mmio_base + MM_NAND_ECC_CTL); |
| 153 | } |
| 154 | |
Boris Brezillon | af37d2c | 2018-09-06 14:05:18 +0200 | [diff] [blame] | 155 | static int cs_calculate_ecc(struct nand_chip *this, const u_char *dat, |
| 156 | u_char *ecc_code) |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 157 | { |
| 158 | uint32_t ecc; |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 159 | void __iomem *mmio_base = this->legacy.IO_ADDR_R; |
David Woodhouse | 9d75414 | 2006-05-13 04:12:40 +0100 | [diff] [blame] | 160 | |
| 161 | ecc = readl(mmio_base + MM_NAND_STS); |
| 162 | |
| 163 | ecc_code[1] = ecc >> 8; |
| 164 | ecc_code[0] = ecc >> 16; |
| 165 | ecc_code[2] = ecc >> 24; |
| 166 | return 0; |
| 167 | } |
| 168 | |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 169 | static struct mtd_info *cs553x_mtd[4]; |
| 170 | |
| 171 | static int __init cs553x_init_one(int cs, int mmio, unsigned long adr) |
| 172 | { |
| 173 | int err = 0; |
| 174 | struct nand_chip *this; |
| 175 | struct mtd_info *new_mtd; |
| 176 | |
Shreeya Patel | 63fa37f | 2018-02-22 22:01:22 +0530 | [diff] [blame] | 177 | pr_notice("Probing CS553x NAND controller CS#%d at %sIO 0x%08lx\n", |
| 178 | cs, mmio ? "MM" : "P", adr); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 179 | |
| 180 | if (!mmio) { |
Shreeya Patel | 63fa37f | 2018-02-22 22:01:22 +0530 | [diff] [blame] | 181 | pr_notice("PIO mode not yet implemented for CS553X NAND controller\n"); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 182 | return -ENXIO; |
| 183 | } |
| 184 | |
| 185 | /* Allocate memory for MTD device structure and private data */ |
Boris BREZILLON | 8cd65d1a | 2015-12-10 08:59:57 +0100 | [diff] [blame] | 186 | this = kzalloc(sizeof(struct nand_chip), GFP_KERNEL); |
| 187 | if (!this) { |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 188 | err = -ENOMEM; |
| 189 | goto out; |
| 190 | } |
| 191 | |
Boris BREZILLON | 8cd65d1a | 2015-12-10 08:59:57 +0100 | [diff] [blame] | 192 | new_mtd = nand_to_mtd(this); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 193 | |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 194 | /* Link the private data with the MTD structure */ |
David Woodhouse | 552d920 | 2006-05-14 01:20:46 +0100 | [diff] [blame] | 195 | new_mtd->owner = THIS_MODULE; |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 196 | |
| 197 | /* map physical address */ |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 198 | this->legacy.IO_ADDR_R = this->legacy.IO_ADDR_W = ioremap(adr, 4096); |
| 199 | if (!this->legacy.IO_ADDR_R) { |
Shreeya Patel | 63fa37f | 2018-02-22 22:01:22 +0530 | [diff] [blame] | 200 | pr_warn("ioremap cs553x NAND @0x%08lx failed\n", adr); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 201 | err = -EIO; |
| 202 | goto out_mtd; |
| 203 | } |
| 204 | |
Boris Brezillon | bf6065c | 2018-09-07 00:38:36 +0200 | [diff] [blame] | 205 | this->legacy.cmd_ctrl = cs553x_hwcontrol; |
Boris Brezillon | 8395b75 | 2018-09-07 00:38:37 +0200 | [diff] [blame] | 206 | this->legacy.dev_ready = cs553x_device_ready; |
Boris Brezillon | 716bbba | 2018-09-07 00:38:35 +0200 | [diff] [blame] | 207 | this->legacy.read_byte = cs553x_read_byte; |
| 208 | this->legacy.read_buf = cs553x_read_buf; |
| 209 | this->legacy.write_buf = cs553x_write_buf; |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 210 | |
Boris Brezillon | 3cece3a | 2018-09-07 00:38:41 +0200 | [diff] [blame] | 211 | this->legacy.chip_delay = 0; |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 212 | |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 213 | this->ecc.mode = NAND_ECC_HW; |
| 214 | this->ecc.size = 256; |
| 215 | this->ecc.bytes = 3; |
| 216 | this->ecc.hwctl = cs_enable_hwecc; |
| 217 | this->ecc.calculate = cs_calculate_ecc; |
| 218 | this->ecc.correct = nand_correct_data; |
Nathan Williams | d1f3b65 | 2012-11-22 10:42:52 +1100 | [diff] [blame] | 219 | this->ecc.strength = 1; |
Thomas Gleixner | 6dfc6d2 | 2006-05-23 12:00:46 +0200 | [diff] [blame] | 220 | |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 221 | /* Enable the following for a flash based bad block table */ |
Brian Norris | bb9ebd4 | 2011-05-31 16:31:23 -0700 | [diff] [blame] | 222 | this->bbt_options = NAND_BBT_USE_FLASH; |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 223 | |
Richard Weinberger | bc349da | 2015-06-01 23:10:51 +0200 | [diff] [blame] | 224 | new_mtd->name = kasprintf(GFP_KERNEL, "cs553x_nand_cs%d", cs); |
| 225 | if (!new_mtd->name) { |
| 226 | err = -ENOMEM; |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 227 | goto out_ior; |
| 228 | } |
| 229 | |
Richard Weinberger | bc349da | 2015-06-01 23:10:51 +0200 | [diff] [blame] | 230 | /* Scan to find existence of the device */ |
Boris Brezillon | 00ad378 | 2018-09-06 14:05:14 +0200 | [diff] [blame] | 231 | err = nand_scan(this, 1); |
Masahiro Yamada | 29453ba | 2016-11-04 19:42:51 +0900 | [diff] [blame] | 232 | if (err) |
Richard Weinberger | bc349da | 2015-06-01 23:10:51 +0200 | [diff] [blame] | 233 | goto out_free; |
Mart Raudsepp | 641f436 | 2008-02-09 08:16:36 +0000 | [diff] [blame] | 234 | |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 235 | cs553x_mtd[cs] = new_mtd; |
| 236 | goto out; |
| 237 | |
Richard Weinberger | bc349da | 2015-06-01 23:10:51 +0200 | [diff] [blame] | 238 | out_free: |
| 239 | kfree(new_mtd->name); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 240 | out_ior: |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 241 | iounmap(this->legacy.IO_ADDR_R); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 242 | out_mtd: |
Boris BREZILLON | 8cd65d1a | 2015-12-10 08:59:57 +0100 | [diff] [blame] | 243 | kfree(this); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 244 | out: |
| 245 | return err; |
| 246 | } |
| 247 | |
David Woodhouse | e4d222f | 2006-05-26 02:06:27 +0100 | [diff] [blame] | 248 | static int is_geode(void) |
| 249 | { |
| 250 | /* These are the CPUs which will have a CS553[56] companion chip */ |
| 251 | if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD && |
| 252 | boot_cpu_data.x86 == 5 && |
| 253 | boot_cpu_data.x86_model == 10) |
| 254 | return 1; /* Geode LX */ |
| 255 | |
| 256 | if ((boot_cpu_data.x86_vendor == X86_VENDOR_NSC || |
| 257 | boot_cpu_data.x86_vendor == X86_VENDOR_CYRIX) && |
| 258 | boot_cpu_data.x86 == 5 && |
| 259 | boot_cpu_data.x86_model == 5) |
| 260 | return 1; /* Geode GX (née GX2) */ |
| 261 | |
| 262 | return 0; |
| 263 | } |
| 264 | |
David Woodhouse | cead4db | 2006-05-16 13:54:50 +0100 | [diff] [blame] | 265 | static int __init cs553x_init(void) |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 266 | { |
| 267 | int err = -ENXIO; |
| 268 | int i; |
| 269 | uint64_t val; |
Mart Raudsepp | 641f436 | 2008-02-09 08:16:36 +0000 | [diff] [blame] | 270 | |
David Woodhouse | e4d222f | 2006-05-26 02:06:27 +0100 | [diff] [blame] | 271 | /* If the CPU isn't a Geode GX or LX, abort */ |
| 272 | if (!is_geode()) |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 273 | return -ENXIO; |
| 274 | |
David Woodhouse | e4d222f | 2006-05-26 02:06:27 +0100 | [diff] [blame] | 275 | /* If it doesn't have the CS553[56], abort */ |
| 276 | rdmsrl(MSR_DIVIL_GLD_CAP, val); |
| 277 | val &= ~0xFFULL; |
| 278 | if (val != CAP_CS5535 && val != CAP_CS5536) |
| 279 | return -ENXIO; |
| 280 | |
| 281 | /* If it doesn't have the NAND controller enabled, abort */ |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 282 | rdmsrl(MSR_DIVIL_BALL_OPTS, val); |
Mart Raudsepp | 641f436 | 2008-02-09 08:16:36 +0000 | [diff] [blame] | 283 | if (val & PIN_OPT_IDE) { |
Shreeya Patel | 63fa37f | 2018-02-22 22:01:22 +0530 | [diff] [blame] | 284 | pr_info("CS553x NAND controller: Flash I/O not enabled in MSR_DIVIL_BALL_OPTS.\n"); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 285 | return -ENXIO; |
| 286 | } |
| 287 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 288 | for (i = 0; i < NR_CS553X_CONTROLLERS; i++) { |
| 289 | rdmsrl(MSR_DIVIL_LBAR_FLSH0 + i, val); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 290 | |
| 291 | if ((val & (FLSH_LBAR_EN|FLSH_NOR_NAND)) == (FLSH_LBAR_EN|FLSH_NOR_NAND)) |
| 292 | err = cs553x_init_one(i, !!(val & FLSH_MEM_IO), val & 0xFFFFFFFF); |
| 293 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 294 | |
David Woodhouse | c9ac5977 | 2006-11-30 08:17:38 +0000 | [diff] [blame] | 295 | /* Register all devices together here. This means we can easily hack it to |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 296 | do mtdconcat etc. if we want to. */ |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 297 | for (i = 0; i < NR_CS553X_CONTROLLERS; i++) { |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 298 | if (cs553x_mtd[i]) { |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 299 | /* If any devices registered, return success. Else the last error. */ |
Rafał Miłecki | 29597ca | 2018-07-13 11:27:31 +0200 | [diff] [blame] | 300 | mtd_device_register(cs553x_mtd[i], NULL, 0); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 301 | err = 0; |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | return err; |
| 306 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 307 | |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 308 | module_init(cs553x_init); |
| 309 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 310 | static void __exit cs553x_cleanup(void) |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 311 | { |
| 312 | int i; |
| 313 | |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 314 | for (i = 0; i < NR_CS553X_CONTROLLERS; i++) { |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 315 | struct mtd_info *mtd = cs553x_mtd[i]; |
| 316 | struct nand_chip *this; |
| 317 | void __iomem *mmio_base; |
| 318 | |
| 319 | if (!mtd) |
Mart Raudsepp | 641f436 | 2008-02-09 08:16:36 +0000 | [diff] [blame] | 320 | continue; |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 321 | |
Boris BREZILLON | 8cd65d1a | 2015-12-10 08:59:57 +0100 | [diff] [blame] | 322 | this = mtd_to_nand(mtd); |
Boris Brezillon | 82fc509 | 2018-09-07 00:38:34 +0200 | [diff] [blame] | 323 | mmio_base = this->legacy.IO_ADDR_R; |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 324 | |
| 325 | /* Release resources, unregister device */ |
Boris Brezillon | 59ac276 | 2018-09-06 14:05:15 +0200 | [diff] [blame] | 326 | nand_release(this); |
Boris BREZILLON | 8cd65d1a | 2015-12-10 08:59:57 +0100 | [diff] [blame] | 327 | kfree(mtd->name); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 328 | cs553x_mtd[i] = NULL; |
| 329 | |
Joe Perches | 8e87d78 | 2008-02-03 17:22:34 +0200 | [diff] [blame] | 330 | /* unmap physical address */ |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 331 | iounmap(mmio_base); |
| 332 | |
| 333 | /* Free the MTD device structure */ |
Boris BREZILLON | 8cd65d1a | 2015-12-10 08:59:57 +0100 | [diff] [blame] | 334 | kfree(this); |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 335 | } |
| 336 | } |
David Woodhouse | e0c7d76 | 2006-05-13 18:07:53 +0100 | [diff] [blame] | 337 | |
David Woodhouse | 179fdc3 | 2006-05-11 22:35:28 +0100 | [diff] [blame] | 338 | module_exit(cs553x_cleanup); |
| 339 | |
| 340 | MODULE_LICENSE("GPL"); |
| 341 | MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>"); |
| 342 | MODULE_DESCRIPTION("NAND controller driver for AMD CS5535/CS5536 companion chip"); |