Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 1 | /* |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 2 | * Error Corrected Code Controller (ECC) - System peripherals regsters. |
| 3 | * Based on AT91SAM9260 datasheet revision B. |
| 4 | * |
Andrew Victor | 3d73e89 | 2008-09-18 21:44:20 +0100 | [diff] [blame] | 5 | * Copyright (C) 2007 Andrew Victor |
Josh Wu | 1c7b874 | 2012-06-29 17:47:55 +0800 | [diff] [blame] | 6 | * Copyright (C) 2007 - 2012 Atmel Corporation. |
Andrew Victor | 3d73e89 | 2008-09-18 21:44:20 +0100 | [diff] [blame] | 7 | * |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public License as published by the |
| 10 | * Free Software Foundation; either version 2 of the License, or (at your |
| 11 | * option) any later version. |
| 12 | */ |
| 13 | |
Håvard Skinnemoen | d4f4c0a | 2008-06-06 18:04:52 +0200 | [diff] [blame] | 14 | #ifndef ATMEL_NAND_ECC_H |
| 15 | #define ATMEL_NAND_ECC_H |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 16 | |
Håvard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 17 | #define ATMEL_ECC_CR 0x00 /* Control register */ |
| 18 | #define ATMEL_ECC_RST (1 << 0) /* Reset parity */ |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 19 | |
Håvard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 20 | #define ATMEL_ECC_MR 0x04 /* Mode register */ |
| 21 | #define ATMEL_ECC_PAGESIZE (3 << 0) /* Page Size */ |
| 22 | #define ATMEL_ECC_PAGESIZE_528 (0) |
| 23 | #define ATMEL_ECC_PAGESIZE_1056 (1) |
| 24 | #define ATMEL_ECC_PAGESIZE_2112 (2) |
| 25 | #define ATMEL_ECC_PAGESIZE_4224 (3) |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 26 | |
Håvard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 27 | #define ATMEL_ECC_SR 0x08 /* Status register */ |
| 28 | #define ATMEL_ECC_RECERR (1 << 0) /* Recoverable Error */ |
| 29 | #define ATMEL_ECC_ECCERR (1 << 1) /* ECC Single Bit Error */ |
| 30 | #define ATMEL_ECC_MULERR (1 << 2) /* Multiple Errors */ |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 31 | |
Håvard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 32 | #define ATMEL_ECC_PR 0x0c /* Parity register */ |
| 33 | #define ATMEL_ECC_BITADDR (0xf << 0) /* Bit Error Address */ |
| 34 | #define ATMEL_ECC_WORDADDR (0xfff << 4) /* Word Error Address */ |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 35 | |
Håvard Skinnemoen | 3c3796c | 2008-06-06 18:04:53 +0200 | [diff] [blame] | 36 | #define ATMEL_ECC_NPR 0x10 /* NParity register */ |
| 37 | #define ATMEL_ECC_NPARITY (0xffff << 0) /* NParity */ |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 38 | |
Josh Wu | 1c7b874 | 2012-06-29 17:47:55 +0800 | [diff] [blame] | 39 | /* PMECC Register Definitions */ |
| 40 | #define ATMEL_PMECC_CFG 0x000 /* Configuration Register */ |
| 41 | #define PMECC_CFG_BCH_ERR2 (0 << 0) |
| 42 | #define PMECC_CFG_BCH_ERR4 (1 << 0) |
| 43 | #define PMECC_CFG_BCH_ERR8 (2 << 0) |
| 44 | #define PMECC_CFG_BCH_ERR12 (3 << 0) |
| 45 | #define PMECC_CFG_BCH_ERR24 (4 << 0) |
| 46 | |
| 47 | #define PMECC_CFG_SECTOR512 (0 << 4) |
| 48 | #define PMECC_CFG_SECTOR1024 (1 << 4) |
| 49 | |
| 50 | #define PMECC_CFG_PAGE_1SECTOR (0 << 8) |
| 51 | #define PMECC_CFG_PAGE_2SECTORS (1 << 8) |
| 52 | #define PMECC_CFG_PAGE_4SECTORS (2 << 8) |
| 53 | #define PMECC_CFG_PAGE_8SECTORS (3 << 8) |
| 54 | |
| 55 | #define PMECC_CFG_READ_OP (0 << 12) |
| 56 | #define PMECC_CFG_WRITE_OP (1 << 12) |
| 57 | |
| 58 | #define PMECC_CFG_SPARE_ENABLE (1 << 16) |
| 59 | #define PMECC_CFG_SPARE_DISABLE (0 << 16) |
| 60 | |
| 61 | #define PMECC_CFG_AUTO_ENABLE (1 << 20) |
| 62 | #define PMECC_CFG_AUTO_DISABLE (0 << 20) |
| 63 | |
| 64 | #define ATMEL_PMECC_SAREA 0x004 /* Spare area size */ |
| 65 | #define ATMEL_PMECC_SADDR 0x008 /* PMECC starting address */ |
| 66 | #define ATMEL_PMECC_EADDR 0x00c /* PMECC ending address */ |
| 67 | #define ATMEL_PMECC_CLK 0x010 /* PMECC clock control */ |
| 68 | #define PMECC_CLK_133MHZ (2 << 0) |
| 69 | |
| 70 | #define ATMEL_PMECC_CTRL 0x014 /* PMECC control register */ |
| 71 | #define PMECC_CTRL_RST (1 << 0) |
| 72 | #define PMECC_CTRL_DATA (1 << 1) |
| 73 | #define PMECC_CTRL_USER (1 << 2) |
| 74 | #define PMECC_CTRL_ENABLE (1 << 4) |
| 75 | #define PMECC_CTRL_DISABLE (1 << 5) |
| 76 | |
| 77 | #define ATMEL_PMECC_SR 0x018 /* PMECC status register */ |
| 78 | #define PMECC_SR_BUSY (1 << 0) |
| 79 | #define PMECC_SR_ENABLE (1 << 4) |
| 80 | |
| 81 | #define ATMEL_PMECC_IER 0x01c /* PMECC interrupt enable */ |
| 82 | #define PMECC_IER_ENABLE (1 << 0) |
| 83 | #define ATMEL_PMECC_IDR 0x020 /* PMECC interrupt disable */ |
| 84 | #define PMECC_IER_DISABLE (1 << 0) |
| 85 | #define ATMEL_PMECC_IMR 0x024 /* PMECC interrupt mask */ |
| 86 | #define PMECC_IER_MASK (1 << 0) |
| 87 | #define ATMEL_PMECC_ISR 0x028 /* PMECC interrupt status */ |
| 88 | #define ATMEL_PMECC_ECCx 0x040 /* PMECC ECC x */ |
| 89 | #define ATMEL_PMECC_REMx 0x240 /* PMECC REM x */ |
| 90 | |
| 91 | /* PMERRLOC Register Definitions */ |
| 92 | #define ATMEL_PMERRLOC_ELCFG 0x000 /* Error location config */ |
| 93 | #define PMERRLOC_ELCFG_SECTOR_512 (0 << 0) |
| 94 | #define PMERRLOC_ELCFG_SECTOR_1024 (1 << 0) |
| 95 | #define PMERRLOC_ELCFG_NUM_ERRORS(n) ((n) << 16) |
| 96 | |
| 97 | #define ATMEL_PMERRLOC_ELPRIM 0x004 /* Error location primitive */ |
| 98 | #define ATMEL_PMERRLOC_ELEN 0x008 /* Error location enable */ |
| 99 | #define ATMEL_PMERRLOC_ELDIS 0x00c /* Error location disable */ |
| 100 | #define PMERRLOC_DISABLE (1 << 0) |
| 101 | |
| 102 | #define ATMEL_PMERRLOC_ELSR 0x010 /* Error location status */ |
| 103 | #define PMERRLOC_ELSR_BUSY (1 << 0) |
| 104 | #define ATMEL_PMERRLOC_ELIER 0x014 /* Error location int enable */ |
| 105 | #define ATMEL_PMERRLOC_ELIDR 0x018 /* Error location int disable */ |
| 106 | #define ATMEL_PMERRLOC_ELIMR 0x01c /* Error location int mask */ |
| 107 | #define ATMEL_PMERRLOC_ELISR 0x020 /* Error location int status */ |
| 108 | #define PMERRLOC_ERR_NUM_MASK (0x1f << 8) |
| 109 | #define PMERRLOC_CALC_DONE (1 << 0) |
| 110 | #define ATMEL_PMERRLOC_SIGMAx 0x028 /* Error location SIGMA x */ |
| 111 | #define ATMEL_PMERRLOC_ELx 0x08c /* Error location x */ |
| 112 | |
| 113 | /* Register access macros for PMECC */ |
| 114 | #define pmecc_readl_relaxed(addr, reg) \ |
| 115 | readl_relaxed((addr) + ATMEL_PMECC_##reg) |
| 116 | |
| 117 | #define pmecc_writel(addr, reg, value) \ |
| 118 | writel((value), (addr) + ATMEL_PMECC_##reg) |
| 119 | |
| 120 | #define pmecc_readb_ecc_relaxed(addr, sector, n) \ |
| 121 | readb_relaxed((addr) + ATMEL_PMECC_ECCx + ((sector) * 0x40) + (n)) |
| 122 | |
| 123 | #define pmecc_readl_rem_relaxed(addr, sector, n) \ |
| 124 | readl_relaxed((addr) + ATMEL_PMECC_REMx + ((sector) * 0x40) + ((n) * 4)) |
| 125 | |
| 126 | #define pmerrloc_readl_relaxed(addr, reg) \ |
| 127 | readl_relaxed((addr) + ATMEL_PMERRLOC_##reg) |
| 128 | |
| 129 | #define pmerrloc_writel(addr, reg, value) \ |
| 130 | writel((value), (addr) + ATMEL_PMERRLOC_##reg) |
| 131 | |
| 132 | #define pmerrloc_writel_sigma_relaxed(addr, n, value) \ |
| 133 | writel_relaxed((value), (addr) + ATMEL_PMERRLOC_SIGMAx + ((n) * 4)) |
| 134 | |
| 135 | #define pmerrloc_readl_sigma_relaxed(addr, n) \ |
| 136 | readl_relaxed((addr) + ATMEL_PMERRLOC_SIGMAx + ((n) * 4)) |
| 137 | |
| 138 | #define pmerrloc_readl_el_relaxed(addr, n) \ |
| 139 | readl_relaxed((addr) + ATMEL_PMERRLOC_ELx + ((n) * 4)) |
| 140 | |
| 141 | /* Galois field dimension */ |
| 142 | #define PMECC_GF_DIMENSION_13 13 |
| 143 | #define PMECC_GF_DIMENSION_14 14 |
| 144 | |
| 145 | #define PMECC_LOOKUP_TABLE_SIZE_512 0x2000 |
| 146 | #define PMECC_LOOKUP_TABLE_SIZE_1024 0x4000 |
| 147 | |
| 148 | /* Time out value for reading PMECC status register */ |
| 149 | #define PMECC_MAX_TIMEOUT_MS 100 |
| 150 | |
Andrew Victor | eaa595c | 2006-11-30 16:23:18 +0100 | [diff] [blame] | 151 | #endif |