1bcc9736cSJeff Kirsher /* drivers/net/ks8851.h 2bcc9736cSJeff Kirsher * 3bcc9736cSJeff Kirsher * Copyright 2009 Simtec Electronics 4bcc9736cSJeff Kirsher * Ben Dooks <ben@simtec.co.uk> 5bcc9736cSJeff Kirsher * 6bcc9736cSJeff Kirsher * KS8851 register definitions 7bcc9736cSJeff Kirsher * 8bcc9736cSJeff Kirsher * This program is free software; you can redistribute it and/or modify 9bcc9736cSJeff Kirsher * it under the terms of the GNU General Public License version 2 as 10bcc9736cSJeff Kirsher * published by the Free Software Foundation. 11bcc9736cSJeff Kirsher */ 12bcc9736cSJeff Kirsher 13bcc9736cSJeff Kirsher #define KS_CCR 0x08 14bcc9736cSJeff Kirsher #define CCR_EEPROM (1 << 9) 15bcc9736cSJeff Kirsher #define CCR_SPI (1 << 8) 16bcc9736cSJeff Kirsher #define CCR_32PIN (1 << 0) 17bcc9736cSJeff Kirsher 18bcc9736cSJeff Kirsher /* MAC address registers */ 1932f160d9STristram Ha #define KS_MAR(_m) (0x15 - (_m)) 20bcc9736cSJeff Kirsher #define KS_MARL 0x10 21bcc9736cSJeff Kirsher #define KS_MARM 0x12 22bcc9736cSJeff Kirsher #define KS_MARH 0x14 23bcc9736cSJeff Kirsher 24bcc9736cSJeff Kirsher #define KS_OBCR 0x20 25bcc9736cSJeff Kirsher #define OBCR_ODS_16mA (1 << 6) 26bcc9736cSJeff Kirsher 27bcc9736cSJeff Kirsher #define KS_EEPCR 0x22 28bcc9736cSJeff Kirsher #define EEPCR_EESRWA (1 << 5) 29bcc9736cSJeff Kirsher #define EEPCR_EESA (1 << 4) 30*51b7b1c3SBen Dooks #define EEPCR_EESB (1 << 3) 31bcc9736cSJeff Kirsher #define EEPCR_EEDO (1 << 2) 32bcc9736cSJeff Kirsher #define EEPCR_EESCK (1 << 1) 33bcc9736cSJeff Kirsher #define EEPCR_EECS (1 << 0) 34bcc9736cSJeff Kirsher 35bcc9736cSJeff Kirsher #define KS_MBIR 0x24 36bcc9736cSJeff Kirsher #define MBIR_TXMBF (1 << 12) 37bcc9736cSJeff Kirsher #define MBIR_TXMBFA (1 << 11) 38bcc9736cSJeff Kirsher #define MBIR_RXMBF (1 << 4) 39bcc9736cSJeff Kirsher #define MBIR_RXMBFA (1 << 3) 40bcc9736cSJeff Kirsher 41bcc9736cSJeff Kirsher #define KS_GRR 0x26 42bcc9736cSJeff Kirsher #define GRR_QMU (1 << 1) 43bcc9736cSJeff Kirsher #define GRR_GSR (1 << 0) 44bcc9736cSJeff Kirsher 45bcc9736cSJeff Kirsher #define KS_WFCR 0x2A 46bcc9736cSJeff Kirsher #define WFCR_MPRXE (1 << 7) 47bcc9736cSJeff Kirsher #define WFCR_WF3E (1 << 3) 48bcc9736cSJeff Kirsher #define WFCR_WF2E (1 << 2) 49bcc9736cSJeff Kirsher #define WFCR_WF1E (1 << 1) 50bcc9736cSJeff Kirsher #define WFCR_WF0E (1 << 0) 51bcc9736cSJeff Kirsher 52bcc9736cSJeff Kirsher #define KS_WF0CRC0 0x30 53bcc9736cSJeff Kirsher #define KS_WF0CRC1 0x32 54bcc9736cSJeff Kirsher #define KS_WF0BM0 0x34 55bcc9736cSJeff Kirsher #define KS_WF0BM1 0x36 56bcc9736cSJeff Kirsher #define KS_WF0BM2 0x38 57bcc9736cSJeff Kirsher #define KS_WF0BM3 0x3A 58bcc9736cSJeff Kirsher 59bcc9736cSJeff Kirsher #define KS_WF1CRC0 0x40 60bcc9736cSJeff Kirsher #define KS_WF1CRC1 0x42 61bcc9736cSJeff Kirsher #define KS_WF1BM0 0x44 62bcc9736cSJeff Kirsher #define KS_WF1BM1 0x46 63bcc9736cSJeff Kirsher #define KS_WF1BM2 0x48 64bcc9736cSJeff Kirsher #define KS_WF1BM3 0x4A 65bcc9736cSJeff Kirsher 66bcc9736cSJeff Kirsher #define KS_WF2CRC0 0x50 67bcc9736cSJeff Kirsher #define KS_WF2CRC1 0x52 68bcc9736cSJeff Kirsher #define KS_WF2BM0 0x54 69bcc9736cSJeff Kirsher #define KS_WF2BM1 0x56 70bcc9736cSJeff Kirsher #define KS_WF2BM2 0x58 71bcc9736cSJeff Kirsher #define KS_WF2BM3 0x5A 72bcc9736cSJeff Kirsher 73bcc9736cSJeff Kirsher #define KS_WF3CRC0 0x60 74bcc9736cSJeff Kirsher #define KS_WF3CRC1 0x62 75bcc9736cSJeff Kirsher #define KS_WF3BM0 0x64 76bcc9736cSJeff Kirsher #define KS_WF3BM1 0x66 77bcc9736cSJeff Kirsher #define KS_WF3BM2 0x68 78bcc9736cSJeff Kirsher #define KS_WF3BM3 0x6A 79bcc9736cSJeff Kirsher 80bcc9736cSJeff Kirsher #define KS_TXCR 0x70 81bcc9736cSJeff Kirsher #define TXCR_TCGICMP (1 << 8) 82bcc9736cSJeff Kirsher #define TXCR_TCGUDP (1 << 7) 83bcc9736cSJeff Kirsher #define TXCR_TCGTCP (1 << 6) 84bcc9736cSJeff Kirsher #define TXCR_TCGIP (1 << 5) 85bcc9736cSJeff Kirsher #define TXCR_FTXQ (1 << 4) 86bcc9736cSJeff Kirsher #define TXCR_TXFCE (1 << 3) 87bcc9736cSJeff Kirsher #define TXCR_TXPE (1 << 2) 88bcc9736cSJeff Kirsher #define TXCR_TXCRC (1 << 1) 89bcc9736cSJeff Kirsher #define TXCR_TXE (1 << 0) 90bcc9736cSJeff Kirsher 91bcc9736cSJeff Kirsher #define KS_TXSR 0x72 92bcc9736cSJeff Kirsher #define TXSR_TXLC (1 << 13) 93bcc9736cSJeff Kirsher #define TXSR_TXMC (1 << 12) 94bcc9736cSJeff Kirsher #define TXSR_TXFID_MASK (0x3f << 0) 95bcc9736cSJeff Kirsher #define TXSR_TXFID_SHIFT (0) 96bcc9736cSJeff Kirsher #define TXSR_TXFID_GET(_v) (((_v) >> 0) & 0x3f) 97bcc9736cSJeff Kirsher 98bcc9736cSJeff Kirsher #define KS_RXCR1 0x74 99bcc9736cSJeff Kirsher #define RXCR1_FRXQ (1 << 15) 100bcc9736cSJeff Kirsher #define RXCR1_RXUDPFCC (1 << 14) 101bcc9736cSJeff Kirsher #define RXCR1_RXTCPFCC (1 << 13) 102bcc9736cSJeff Kirsher #define RXCR1_RXIPFCC (1 << 12) 103bcc9736cSJeff Kirsher #define RXCR1_RXPAFMA (1 << 11) 104bcc9736cSJeff Kirsher #define RXCR1_RXFCE (1 << 10) 105bcc9736cSJeff Kirsher #define RXCR1_RXEFE (1 << 9) 106bcc9736cSJeff Kirsher #define RXCR1_RXMAFMA (1 << 8) 107bcc9736cSJeff Kirsher #define RXCR1_RXBE (1 << 7) 108bcc9736cSJeff Kirsher #define RXCR1_RXME (1 << 6) 109bcc9736cSJeff Kirsher #define RXCR1_RXUE (1 << 5) 110bcc9736cSJeff Kirsher #define RXCR1_RXAE (1 << 4) 111bcc9736cSJeff Kirsher #define RXCR1_RXINVF (1 << 1) 112bcc9736cSJeff Kirsher #define RXCR1_RXE (1 << 0) 113bcc9736cSJeff Kirsher 114bcc9736cSJeff Kirsher #define KS_RXCR2 0x76 115bcc9736cSJeff Kirsher #define RXCR2_SRDBL_MASK (0x7 << 5) 116bcc9736cSJeff Kirsher #define RXCR2_SRDBL_SHIFT (5) 117bcc9736cSJeff Kirsher #define RXCR2_SRDBL_4B (0x0 << 5) 118bcc9736cSJeff Kirsher #define RXCR2_SRDBL_8B (0x1 << 5) 119bcc9736cSJeff Kirsher #define RXCR2_SRDBL_16B (0x2 << 5) 120bcc9736cSJeff Kirsher #define RXCR2_SRDBL_32B (0x3 << 5) 121bcc9736cSJeff Kirsher #define RXCR2_SRDBL_FRAME (0x4 << 5) 122bcc9736cSJeff Kirsher #define RXCR2_IUFFP (1 << 4) 123bcc9736cSJeff Kirsher #define RXCR2_RXIUFCEZ (1 << 3) 124bcc9736cSJeff Kirsher #define RXCR2_UDPLFE (1 << 2) 125bcc9736cSJeff Kirsher #define RXCR2_RXICMPFCC (1 << 1) 126bcc9736cSJeff Kirsher #define RXCR2_RXSAF (1 << 0) 127bcc9736cSJeff Kirsher 128bcc9736cSJeff Kirsher #define KS_TXMIR 0x78 129bcc9736cSJeff Kirsher 130bcc9736cSJeff Kirsher #define KS_RXFHSR 0x7C 131bcc9736cSJeff Kirsher #define RXFSHR_RXFV (1 << 15) 132bcc9736cSJeff Kirsher #define RXFSHR_RXICMPFCS (1 << 13) 133bcc9736cSJeff Kirsher #define RXFSHR_RXIPFCS (1 << 12) 134bcc9736cSJeff Kirsher #define RXFSHR_RXTCPFCS (1 << 11) 135bcc9736cSJeff Kirsher #define RXFSHR_RXUDPFCS (1 << 10) 136bcc9736cSJeff Kirsher #define RXFSHR_RXBF (1 << 7) 137bcc9736cSJeff Kirsher #define RXFSHR_RXMF (1 << 6) 138bcc9736cSJeff Kirsher #define RXFSHR_RXUF (1 << 5) 139bcc9736cSJeff Kirsher #define RXFSHR_RXMR (1 << 4) 140bcc9736cSJeff Kirsher #define RXFSHR_RXFT (1 << 3) 141bcc9736cSJeff Kirsher #define RXFSHR_RXFTL (1 << 2) 142bcc9736cSJeff Kirsher #define RXFSHR_RXRF (1 << 1) 143bcc9736cSJeff Kirsher #define RXFSHR_RXCE (1 << 0) 144bcc9736cSJeff Kirsher 145bcc9736cSJeff Kirsher #define KS_RXFHBCR 0x7E 146bcc9736cSJeff Kirsher #define KS_TXQCR 0x80 147bcc9736cSJeff Kirsher #define TXQCR_AETFE (1 << 2) 148bcc9736cSJeff Kirsher #define TXQCR_TXQMAM (1 << 1) 149bcc9736cSJeff Kirsher #define TXQCR_METFE (1 << 0) 150bcc9736cSJeff Kirsher 151bcc9736cSJeff Kirsher #define KS_RXQCR 0x82 152bcc9736cSJeff Kirsher #define RXQCR_RXDTTS (1 << 12) 153bcc9736cSJeff Kirsher #define RXQCR_RXDBCTS (1 << 11) 154bcc9736cSJeff Kirsher #define RXQCR_RXFCTS (1 << 10) 155bcc9736cSJeff Kirsher #define RXQCR_RXIPHTOE (1 << 9) 156bcc9736cSJeff Kirsher #define RXQCR_RXDTTE (1 << 7) 157bcc9736cSJeff Kirsher #define RXQCR_RXDBCTE (1 << 6) 158bcc9736cSJeff Kirsher #define RXQCR_RXFCTE (1 << 5) 159bcc9736cSJeff Kirsher #define RXQCR_ADRFE (1 << 4) 160bcc9736cSJeff Kirsher #define RXQCR_SDA (1 << 3) 161bcc9736cSJeff Kirsher #define RXQCR_RRXEF (1 << 0) 162bcc9736cSJeff Kirsher 163bcc9736cSJeff Kirsher #define KS_TXFDPR 0x84 164bcc9736cSJeff Kirsher #define TXFDPR_TXFPAI (1 << 14) 165bcc9736cSJeff Kirsher #define TXFDPR_TXFP_MASK (0x7ff << 0) 166bcc9736cSJeff Kirsher #define TXFDPR_TXFP_SHIFT (0) 167bcc9736cSJeff Kirsher 168bcc9736cSJeff Kirsher #define KS_RXFDPR 0x86 169bcc9736cSJeff Kirsher #define RXFDPR_RXFPAI (1 << 14) 170bcc9736cSJeff Kirsher 171bcc9736cSJeff Kirsher #define KS_RXDTTR 0x8C 172bcc9736cSJeff Kirsher #define KS_RXDBCTR 0x8E 173bcc9736cSJeff Kirsher 174bcc9736cSJeff Kirsher #define KS_IER 0x90 175bcc9736cSJeff Kirsher #define KS_ISR 0x92 176bcc9736cSJeff Kirsher #define IRQ_LCI (1 << 15) 177bcc9736cSJeff Kirsher #define IRQ_TXI (1 << 14) 178bcc9736cSJeff Kirsher #define IRQ_RXI (1 << 13) 179bcc9736cSJeff Kirsher #define IRQ_RXOI (1 << 11) 180bcc9736cSJeff Kirsher #define IRQ_TXPSI (1 << 9) 181bcc9736cSJeff Kirsher #define IRQ_RXPSI (1 << 8) 182bcc9736cSJeff Kirsher #define IRQ_TXSAI (1 << 6) 183bcc9736cSJeff Kirsher #define IRQ_RXWFDI (1 << 5) 184bcc9736cSJeff Kirsher #define IRQ_RXMPDI (1 << 4) 185bcc9736cSJeff Kirsher #define IRQ_LDI (1 << 3) 186bcc9736cSJeff Kirsher #define IRQ_EDI (1 << 2) 187bcc9736cSJeff Kirsher #define IRQ_SPIBEI (1 << 1) 188bcc9736cSJeff Kirsher #define IRQ_DEDI (1 << 0) 189bcc9736cSJeff Kirsher 190bcc9736cSJeff Kirsher #define KS_RXFCTR 0x9C 191bcc9736cSJeff Kirsher #define KS_RXFC 0x9D 192bcc9736cSJeff Kirsher #define RXFCTR_RXFC_MASK (0xff << 8) 193bcc9736cSJeff Kirsher #define RXFCTR_RXFC_SHIFT (8) 194bcc9736cSJeff Kirsher #define RXFCTR_RXFC_GET(_v) (((_v) >> 8) & 0xff) 195bcc9736cSJeff Kirsher #define RXFCTR_RXFCT_MASK (0xff << 0) 196bcc9736cSJeff Kirsher #define RXFCTR_RXFCT_SHIFT (0) 197bcc9736cSJeff Kirsher 198bcc9736cSJeff Kirsher #define KS_TXNTFSR 0x9E 199bcc9736cSJeff Kirsher 200bcc9736cSJeff Kirsher #define KS_MAHTR0 0xA0 201bcc9736cSJeff Kirsher #define KS_MAHTR1 0xA2 202bcc9736cSJeff Kirsher #define KS_MAHTR2 0xA4 203bcc9736cSJeff Kirsher #define KS_MAHTR3 0xA6 204bcc9736cSJeff Kirsher 205bcc9736cSJeff Kirsher #define KS_FCLWR 0xB0 206bcc9736cSJeff Kirsher #define KS_FCHWR 0xB2 207bcc9736cSJeff Kirsher #define KS_FCOWR 0xB4 208bcc9736cSJeff Kirsher 209bcc9736cSJeff Kirsher #define KS_CIDER 0xC0 210bcc9736cSJeff Kirsher #define CIDER_ID 0x8870 211bcc9736cSJeff Kirsher #define CIDER_REV_MASK (0x7 << 1) 212bcc9736cSJeff Kirsher #define CIDER_REV_SHIFT (1) 213bcc9736cSJeff Kirsher #define CIDER_REV_GET(_v) (((_v) >> 1) & 0x7) 214bcc9736cSJeff Kirsher 215bcc9736cSJeff Kirsher #define KS_CGCR 0xC6 216bcc9736cSJeff Kirsher 217bcc9736cSJeff Kirsher #define KS_IACR 0xC8 218bcc9736cSJeff Kirsher #define IACR_RDEN (1 << 12) 219bcc9736cSJeff Kirsher #define IACR_TSEL_MASK (0x3 << 10) 220bcc9736cSJeff Kirsher #define IACR_TSEL_SHIFT (10) 221bcc9736cSJeff Kirsher #define IACR_TSEL_MIB (0x3 << 10) 222bcc9736cSJeff Kirsher #define IACR_ADDR_MASK (0x1f << 0) 223bcc9736cSJeff Kirsher #define IACR_ADDR_SHIFT (0) 224bcc9736cSJeff Kirsher 225bcc9736cSJeff Kirsher #define KS_IADLR 0xD0 226bcc9736cSJeff Kirsher #define KS_IAHDR 0xD2 227bcc9736cSJeff Kirsher 228bcc9736cSJeff Kirsher #define KS_PMECR 0xD4 229bcc9736cSJeff Kirsher #define PMECR_PME_DELAY (1 << 14) 230bcc9736cSJeff Kirsher #define PMECR_PME_POL (1 << 12) 231bcc9736cSJeff Kirsher #define PMECR_WOL_WAKEUP (1 << 11) 232bcc9736cSJeff Kirsher #define PMECR_WOL_MAGICPKT (1 << 10) 233bcc9736cSJeff Kirsher #define PMECR_WOL_LINKUP (1 << 9) 234bcc9736cSJeff Kirsher #define PMECR_WOL_ENERGY (1 << 8) 235bcc9736cSJeff Kirsher #define PMECR_AUTO_WAKE_EN (1 << 7) 236bcc9736cSJeff Kirsher #define PMECR_WAKEUP_NORMAL (1 << 6) 237bcc9736cSJeff Kirsher #define PMECR_WKEVT_MASK (0xf << 2) 238bcc9736cSJeff Kirsher #define PMECR_WKEVT_SHIFT (2) 239bcc9736cSJeff Kirsher #define PMECR_WKEVT_GET(_v) (((_v) >> 2) & 0xf) 240bcc9736cSJeff Kirsher #define PMECR_WKEVT_ENERGY (0x1 << 2) 241bcc9736cSJeff Kirsher #define PMECR_WKEVT_LINK (0x2 << 2) 242bcc9736cSJeff Kirsher #define PMECR_WKEVT_MAGICPKT (0x4 << 2) 243bcc9736cSJeff Kirsher #define PMECR_WKEVT_FRAME (0x8 << 2) 244bcc9736cSJeff Kirsher #define PMECR_PM_MASK (0x3 << 0) 245bcc9736cSJeff Kirsher #define PMECR_PM_SHIFT (0) 246bcc9736cSJeff Kirsher #define PMECR_PM_NORMAL (0x0 << 0) 247bcc9736cSJeff Kirsher #define PMECR_PM_ENERGY (0x1 << 0) 248bcc9736cSJeff Kirsher #define PMECR_PM_SOFTDOWN (0x2 << 0) 249bcc9736cSJeff Kirsher #define PMECR_PM_POWERSAVE (0x3 << 0) 250bcc9736cSJeff Kirsher 251bcc9736cSJeff Kirsher /* Standard MII PHY data */ 252bcc9736cSJeff Kirsher #define KS_P1MBCR 0xE4 253bcc9736cSJeff Kirsher #define KS_P1MBSR 0xE6 254bcc9736cSJeff Kirsher #define KS_PHY1ILR 0xE8 255bcc9736cSJeff Kirsher #define KS_PHY1IHR 0xEA 256bcc9736cSJeff Kirsher #define KS_P1ANAR 0xEC 257bcc9736cSJeff Kirsher #define KS_P1ANLPR 0xEE 258bcc9736cSJeff Kirsher 259bcc9736cSJeff Kirsher #define KS_P1SCLMD 0xF4 260bcc9736cSJeff Kirsher #define P1SCLMD_LEDOFF (1 << 15) 261bcc9736cSJeff Kirsher #define P1SCLMD_TXIDS (1 << 14) 262bcc9736cSJeff Kirsher #define P1SCLMD_RESTARTAN (1 << 13) 263bcc9736cSJeff Kirsher #define P1SCLMD_DISAUTOMDIX (1 << 10) 264bcc9736cSJeff Kirsher #define P1SCLMD_FORCEMDIX (1 << 9) 265bcc9736cSJeff Kirsher #define P1SCLMD_AUTONEGEN (1 << 7) 266bcc9736cSJeff Kirsher #define P1SCLMD_FORCE100 (1 << 6) 267bcc9736cSJeff Kirsher #define P1SCLMD_FORCEFDX (1 << 5) 268bcc9736cSJeff Kirsher #define P1SCLMD_ADV_FLOW (1 << 4) 269bcc9736cSJeff Kirsher #define P1SCLMD_ADV_100BT_FDX (1 << 3) 270bcc9736cSJeff Kirsher #define P1SCLMD_ADV_100BT_HDX (1 << 2) 271bcc9736cSJeff Kirsher #define P1SCLMD_ADV_10BT_FDX (1 << 1) 272bcc9736cSJeff Kirsher #define P1SCLMD_ADV_10BT_HDX (1 << 0) 273bcc9736cSJeff Kirsher 274bcc9736cSJeff Kirsher #define KS_P1CR 0xF6 275bcc9736cSJeff Kirsher #define P1CR_HP_MDIX (1 << 15) 276bcc9736cSJeff Kirsher #define P1CR_REV_POL (1 << 13) 277bcc9736cSJeff Kirsher #define P1CR_OP_100M (1 << 10) 278bcc9736cSJeff Kirsher #define P1CR_OP_FDX (1 << 9) 279bcc9736cSJeff Kirsher #define P1CR_OP_MDI (1 << 7) 280bcc9736cSJeff Kirsher #define P1CR_AN_DONE (1 << 6) 281bcc9736cSJeff Kirsher #define P1CR_LINK_GOOD (1 << 5) 282bcc9736cSJeff Kirsher #define P1CR_PNTR_FLOW (1 << 4) 283bcc9736cSJeff Kirsher #define P1CR_PNTR_100BT_FDX (1 << 3) 284bcc9736cSJeff Kirsher #define P1CR_PNTR_100BT_HDX (1 << 2) 285bcc9736cSJeff Kirsher #define P1CR_PNTR_10BT_FDX (1 << 1) 286bcc9736cSJeff Kirsher #define P1CR_PNTR_10BT_HDX (1 << 0) 287bcc9736cSJeff Kirsher 288bcc9736cSJeff Kirsher /* TX Frame control */ 289bcc9736cSJeff Kirsher 290bcc9736cSJeff Kirsher #define TXFR_TXIC (1 << 15) 291bcc9736cSJeff Kirsher #define TXFR_TXFID_MASK (0x3f << 0) 292bcc9736cSJeff Kirsher #define TXFR_TXFID_SHIFT (0) 293bcc9736cSJeff Kirsher 294bcc9736cSJeff Kirsher /* SPI frame opcodes */ 295bcc9736cSJeff Kirsher #define KS_SPIOP_RD (0x00) 296bcc9736cSJeff Kirsher #define KS_SPIOP_WR (0x40) 297bcc9736cSJeff Kirsher #define KS_SPIOP_RXFIFO (0x80) 298bcc9736cSJeff Kirsher #define KS_SPIOP_TXFIFO (0xC0) 299