Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.5-rc1 843 lines 23 kB view raw
1/* 2 * Tsi721 PCIExpress-to-SRIO bridge definitions 3 * 4 * Copyright 2011, Integrated Device Technology, Inc. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License as published by the Free 8 * Software Foundation; either version 2 of the License, or (at your option) 9 * any later version. 10 * 11 * This program is distributed in the hope that it will be useful, but WITHOUT 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 14 * more details. 15 * 16 * You should have received a copy of the GNU General Public License along with 17 * this program; if not, write to the Free Software Foundation, Inc., 59 18 * Temple Place - Suite 330, Boston, MA 02111-1307, USA. 19 */ 20 21#ifndef __TSI721_H 22#define __TSI721_H 23 24#define DRV_NAME "tsi721" 25 26#define DEFAULT_HOPCOUNT 0xff 27#define DEFAULT_DESTID 0xff 28 29/* PCI device ID */ 30#define PCI_DEVICE_ID_TSI721 0x80ab 31 32#define BAR_0 0 33#define BAR_1 1 34#define BAR_2 2 35#define BAR_4 4 36 37#define TSI721_PC2SR_BARS 2 38#define TSI721_PC2SR_WINS 8 39#define TSI721_PC2SR_ZONES 8 40#define TSI721_MAINT_WIN 0 /* Window for outbound maintenance requests */ 41#define IDB_QUEUE 0 /* Inbound Doorbell Queue to use */ 42#define IDB_QSIZE 512 /* Inbound Doorbell Queue size */ 43 44/* Memory space sizes */ 45#define TSI721_REG_SPACE_SIZE (512 * 1024) /* 512K */ 46#define TSI721_DB_WIN_SIZE (16 * 1024 * 1024) /* 16MB */ 47 48#define RIO_TT_CODE_8 0x00000000 49#define RIO_TT_CODE_16 0x00000001 50 51#define TSI721_DMA_MAXCH 8 52#define TSI721_DMA_MINSTSSZ 32 53#define TSI721_DMA_STSBLKSZ 8 54 55#define TSI721_SRIO_MAXCH 8 56 57#define DBELL_SID(buf) (((u8)buf[2] << 8) | (u8)buf[3]) 58#define DBELL_TID(buf) (((u8)buf[4] << 8) | (u8)buf[5]) 59#define DBELL_INF(buf) (((u8)buf[0] << 8) | (u8)buf[1]) 60 61#define TSI721_RIO_PW_MSG_SIZE 16 /* Tsi721 saves only 16 bytes of PW msg */ 62 63/* Register definitions */ 64 65/* 66 * Registers in PCIe configuration space 67 */ 68 69#define TSI721_PCIECFG_MSIXTBL 0x0a4 70#define TSI721_MSIXTBL_OFFSET 0x2c000 71#define TSI721_PCIECFG_MSIXPBA 0x0a8 72#define TSI721_MSIXPBA_OFFSET 0x2a000 73#define TSI721_PCIECFG_EPCTL 0x400 74 75#define MAX_READ_REQUEST_SZ_SHIFT 12 76 77/* 78 * Event Management Registers 79 */ 80 81#define TSI721_RIO_EM_INT_STAT 0x10910 82#define TSI721_RIO_EM_INT_STAT_PW_RX 0x00010000 83 84#define TSI721_RIO_EM_INT_ENABLE 0x10914 85#define TSI721_RIO_EM_INT_ENABLE_PW_RX 0x00010000 86 87#define TSI721_RIO_EM_DEV_INT_EN 0x10930 88#define TSI721_RIO_EM_DEV_INT_EN_INT 0x00000001 89 90/* 91 * Port-Write Block Registers 92 */ 93 94#define TSI721_RIO_PW_CTL 0x10a04 95#define TSI721_RIO_PW_CTL_PW_TIMER 0xf0000000 96#define TSI721_RIO_PW_CTL_PWT_DIS (0 << 28) 97#define TSI721_RIO_PW_CTL_PWT_103 (1 << 28) 98#define TSI721_RIO_PW_CTL_PWT_205 (1 << 29) 99#define TSI721_RIO_PW_CTL_PWT_410 (1 << 30) 100#define TSI721_RIO_PW_CTL_PWT_820 (1 << 31) 101#define TSI721_RIO_PW_CTL_PWC_MODE 0x01000000 102#define TSI721_RIO_PW_CTL_PWC_CONT 0x00000000 103#define TSI721_RIO_PW_CTL_PWC_REL 0x01000000 104 105#define TSI721_RIO_PW_RX_STAT 0x10a10 106#define TSI721_RIO_PW_RX_STAT_WR_SIZE 0x0000f000 107#define TSI_RIO_PW_RX_STAT_WDPTR 0x00000100 108#define TSI721_RIO_PW_RX_STAT_PW_SHORT 0x00000008 109#define TSI721_RIO_PW_RX_STAT_PW_TRUNC 0x00000004 110#define TSI721_RIO_PW_RX_STAT_PW_DISC 0x00000002 111#define TSI721_RIO_PW_RX_STAT_PW_VAL 0x00000001 112 113#define TSI721_RIO_PW_RX_CAPT(x) (0x10a20 + (x)*4) 114 115/* 116 * Inbound Doorbells 117 */ 118 119#define TSI721_IDB_ENTRY_SIZE 64 120 121#define TSI721_IDQ_CTL(x) (0x20000 + (x) * 0x1000) 122#define TSI721_IDQ_SUSPEND 0x00000002 123#define TSI721_IDQ_INIT 0x00000001 124 125#define TSI721_IDQ_STS(x) (0x20004 + (x) * 0x1000) 126#define TSI721_IDQ_RUN 0x00200000 127 128#define TSI721_IDQ_MASK(x) (0x20008 + (x) * 0x1000) 129#define TSI721_IDQ_MASK_MASK 0xffff0000 130#define TSI721_IDQ_MASK_PATT 0x0000ffff 131 132#define TSI721_IDQ_RP(x) (0x2000c + (x) * 0x1000) 133#define TSI721_IDQ_RP_PTR 0x0007ffff 134 135#define TSI721_IDQ_WP(x) (0x20010 + (x) * 0x1000) 136#define TSI721_IDQ_WP_PTR 0x0007ffff 137 138#define TSI721_IDQ_BASEL(x) (0x20014 + (x) * 0x1000) 139#define TSI721_IDQ_BASEL_ADDR 0xffffffc0 140#define TSI721_IDQ_BASEU(x) (0x20018 + (x) * 0x1000) 141#define TSI721_IDQ_SIZE(x) (0x2001c + (x) * 0x1000) 142#define TSI721_IDQ_SIZE_VAL(size) (__fls(size) - 4) 143#define TSI721_IDQ_SIZE_MIN 512 144#define TSI721_IDQ_SIZE_MAX (512 * 1024) 145 146#define TSI721_SR_CHINT(x) (0x20040 + (x) * 0x1000) 147#define TSI721_SR_CHINTE(x) (0x20044 + (x) * 0x1000) 148#define TSI721_SR_CHINTSET(x) (0x20048 + (x) * 0x1000) 149#define TSI721_SR_CHINT_ODBOK 0x00000020 150#define TSI721_SR_CHINT_IDBQRCV 0x00000010 151#define TSI721_SR_CHINT_SUSP 0x00000008 152#define TSI721_SR_CHINT_ODBTO 0x00000004 153#define TSI721_SR_CHINT_ODBRTRY 0x00000002 154#define TSI721_SR_CHINT_ODBERR 0x00000001 155#define TSI721_SR_CHINT_ALL 0x0000003f 156 157#define TSI721_IBWIN_NUM 8 158 159#define TSI721_IBWINLB(x) (0x29000 + (x) * 0x20) 160#define TSI721_IBWINLB_BA 0xfffff000 161#define TSI721_IBWINLB_WEN 0x00000001 162 163#define TSI721_SR2PC_GEN_INTE 0x29800 164#define TSI721_SR2PC_PWE 0x29804 165#define TSI721_SR2PC_GEN_INT 0x29808 166 167#define TSI721_DEV_INTE 0x29840 168#define TSI721_DEV_INT 0x29844 169#define TSI721_DEV_INTSET 0x29848 170#define TSI721_DEV_INT_BDMA_CH 0x00002000 171#define TSI721_DEV_INT_BDMA_NCH 0x00001000 172#define TSI721_DEV_INT_SMSG_CH 0x00000800 173#define TSI721_DEV_INT_SMSG_NCH 0x00000400 174#define TSI721_DEV_INT_SR2PC_CH 0x00000200 175#define TSI721_DEV_INT_SRIO 0x00000020 176 177#define TSI721_DEV_CHAN_INTE 0x2984c 178#define TSI721_DEV_CHAN_INT 0x29850 179 180#define TSI721_INT_SR2PC_CHAN_M 0xff000000 181#define TSI721_INT_SR2PC_CHAN(x) (1 << (24 + (x))) 182#define TSI721_INT_IMSG_CHAN_M 0x00ff0000 183#define TSI721_INT_IMSG_CHAN(x) (1 << (16 + (x))) 184#define TSI721_INT_OMSG_CHAN_M 0x0000ff00 185#define TSI721_INT_OMSG_CHAN(x) (1 << (8 + (x))) 186#define TSI721_INT_BDMA_CHAN_M 0x000000ff 187#define TSI721_INT_BDMA_CHAN(x) (1 << (x)) 188 189/* 190 * PC2SR block registers 191 */ 192#define TSI721_OBWIN_NUM TSI721_PC2SR_WINS 193 194#define TSI721_OBWINLB(x) (0x40000 + (x) * 0x20) 195#define TSI721_OBWINLB_BA 0xffff8000 196#define TSI721_OBWINLB_WEN 0x00000001 197 198#define TSI721_OBWINUB(x) (0x40004 + (x) * 0x20) 199 200#define TSI721_OBWINSZ(x) (0x40008 + (x) * 0x20) 201#define TSI721_OBWINSZ_SIZE 0x00001f00 202#define TSI721_OBWIN_SIZE(size) (__fls(size) - 15) 203 204#define TSI721_ZONE_SEL 0x41300 205#define TSI721_ZONE_SEL_RD_WRB 0x00020000 206#define TSI721_ZONE_SEL_GO 0x00010000 207#define TSI721_ZONE_SEL_WIN 0x00000038 208#define TSI721_ZONE_SEL_ZONE 0x00000007 209 210#define TSI721_LUT_DATA0 0x41304 211#define TSI721_LUT_DATA0_ADD 0xfffff000 212#define TSI721_LUT_DATA0_RDTYPE 0x00000f00 213#define TSI721_LUT_DATA0_NREAD 0x00000100 214#define TSI721_LUT_DATA0_MNTRD 0x00000200 215#define TSI721_LUT_DATA0_RDCRF 0x00000020 216#define TSI721_LUT_DATA0_WRCRF 0x00000010 217#define TSI721_LUT_DATA0_WRTYPE 0x0000000f 218#define TSI721_LUT_DATA0_NWR 0x00000001 219#define TSI721_LUT_DATA0_MNTWR 0x00000002 220#define TSI721_LUT_DATA0_NWR_R 0x00000004 221 222#define TSI721_LUT_DATA1 0x41308 223 224#define TSI721_LUT_DATA2 0x4130c 225#define TSI721_LUT_DATA2_HC 0xff000000 226#define TSI721_LUT_DATA2_ADD65 0x000c0000 227#define TSI721_LUT_DATA2_TT 0x00030000 228#define TSI721_LUT_DATA2_DSTID 0x0000ffff 229 230#define TSI721_PC2SR_INTE 0x41310 231 232#define TSI721_DEVCTL 0x48004 233#define TSI721_DEVCTL_SRBOOT_CMPL 0x00000004 234 235#define TSI721_I2C_INT_ENABLE 0x49120 236 237/* 238 * Block DMA Engine Registers 239 * x = 0..7 240 */ 241 242#define TSI721_DMAC_BASE(x) (0x51000 + (x) * 0x1000) 243 244#define TSI721_DMAC_DWRCNT 0x000 245#define TSI721_DMAC_DRDCNT 0x004 246 247#define TSI721_DMAC_CTL 0x008 248#define TSI721_DMAC_CTL_SUSP 0x00000002 249#define TSI721_DMAC_CTL_INIT 0x00000001 250 251#define TSI721_DMAC_INT 0x00c 252#define TSI721_DMAC_INT_STFULL 0x00000010 253#define TSI721_DMAC_INT_DONE 0x00000008 254#define TSI721_DMAC_INT_SUSP 0x00000004 255#define TSI721_DMAC_INT_ERR 0x00000002 256#define TSI721_DMAC_INT_IOFDONE 0x00000001 257#define TSI721_DMAC_INT_ALL 0x0000001f 258 259#define TSI721_DMAC_INTSET 0x010 260 261#define TSI721_DMAC_STS 0x014 262#define TSI721_DMAC_STS_ABORT 0x00400000 263#define TSI721_DMAC_STS_RUN 0x00200000 264#define TSI721_DMAC_STS_CS 0x001f0000 265 266#define TSI721_DMAC_INTE 0x018 267 268#define TSI721_DMAC_DPTRL 0x024 269#define TSI721_DMAC_DPTRL_MASK 0xffffffe0 270 271#define TSI721_DMAC_DPTRH 0x028 272 273#define TSI721_DMAC_DSBL 0x02c 274#define TSI721_DMAC_DSBL_MASK 0xffffffc0 275 276#define TSI721_DMAC_DSBH 0x030 277 278#define TSI721_DMAC_DSSZ 0x034 279#define TSI721_DMAC_DSSZ_SIZE_M 0x0000000f 280#define TSI721_DMAC_DSSZ_SIZE(size) (__fls(size) - 4) 281 282#define TSI721_DMAC_DSRP 0x038 283#define TSI721_DMAC_DSRP_MASK 0x0007ffff 284 285#define TSI721_DMAC_DSWP 0x03c 286#define TSI721_DMAC_DSWP_MASK 0x0007ffff 287 288#define TSI721_BDMA_INTE 0x5f000 289 290/* 291 * Messaging definitions 292 */ 293#define TSI721_MSG_BUFFER_SIZE RIO_MAX_MSG_SIZE 294#define TSI721_MSG_MAX_SIZE RIO_MAX_MSG_SIZE 295#define TSI721_IMSG_MAXCH 8 296#define TSI721_IMSG_CHNUM TSI721_IMSG_MAXCH 297#define TSI721_IMSGD_MIN_RING_SIZE 32 298#define TSI721_IMSGD_RING_SIZE 512 299 300#define TSI721_OMSG_CHNUM 4 /* One channel per MBOX */ 301#define TSI721_OMSGD_MIN_RING_SIZE 32 302#define TSI721_OMSGD_RING_SIZE 512 303 304/* 305 * Outbound Messaging Engine Registers 306 * x = 0..7 307 */ 308 309#define TSI721_OBDMAC_DWRCNT(x) (0x61000 + (x) * 0x1000) 310 311#define TSI721_OBDMAC_DRDCNT(x) (0x61004 + (x) * 0x1000) 312 313#define TSI721_OBDMAC_CTL(x) (0x61008 + (x) * 0x1000) 314#define TSI721_OBDMAC_CTL_MASK 0x00000007 315#define TSI721_OBDMAC_CTL_RETRY_THR 0x00000004 316#define TSI721_OBDMAC_CTL_SUSPEND 0x00000002 317#define TSI721_OBDMAC_CTL_INIT 0x00000001 318 319#define TSI721_OBDMAC_INT(x) (0x6100c + (x) * 0x1000) 320#define TSI721_OBDMAC_INTSET(x) (0x61010 + (x) * 0x1000) 321#define TSI721_OBDMAC_INTE(x) (0x61018 + (x) * 0x1000) 322#define TSI721_OBDMAC_INT_MASK 0x0000001F 323#define TSI721_OBDMAC_INT_ST_FULL 0x00000010 324#define TSI721_OBDMAC_INT_DONE 0x00000008 325#define TSI721_OBDMAC_INT_SUSPENDED 0x00000004 326#define TSI721_OBDMAC_INT_ERROR 0x00000002 327#define TSI721_OBDMAC_INT_IOF_DONE 0x00000001 328#define TSI721_OBDMAC_INT_ALL TSI721_OBDMAC_INT_MASK 329 330#define TSI721_OBDMAC_STS(x) (0x61014 + (x) * 0x1000) 331#define TSI721_OBDMAC_STS_MASK 0x007f0000 332#define TSI721_OBDMAC_STS_ABORT 0x00400000 333#define TSI721_OBDMAC_STS_RUN 0x00200000 334#define TSI721_OBDMAC_STS_CS 0x001f0000 335 336#define TSI721_OBDMAC_PWE(x) (0x6101c + (x) * 0x1000) 337#define TSI721_OBDMAC_PWE_MASK 0x00000002 338#define TSI721_OBDMAC_PWE_ERROR_EN 0x00000002 339 340#define TSI721_OBDMAC_DPTRL(x) (0x61020 + (x) * 0x1000) 341#define TSI721_OBDMAC_DPTRL_MASK 0xfffffff0 342 343#define TSI721_OBDMAC_DPTRH(x) (0x61024 + (x) * 0x1000) 344#define TSI721_OBDMAC_DPTRH_MASK 0xffffffff 345 346#define TSI721_OBDMAC_DSBL(x) (0x61040 + (x) * 0x1000) 347#define TSI721_OBDMAC_DSBL_MASK 0xffffffc0 348 349#define TSI721_OBDMAC_DSBH(x) (0x61044 + (x) * 0x1000) 350#define TSI721_OBDMAC_DSBH_MASK 0xffffffff 351 352#define TSI721_OBDMAC_DSSZ(x) (0x61048 + (x) * 0x1000) 353#define TSI721_OBDMAC_DSSZ_MASK 0x0000000f 354 355#define TSI721_OBDMAC_DSRP(x) (0x6104c + (x) * 0x1000) 356#define TSI721_OBDMAC_DSRP_MASK 0x0007ffff 357 358#define TSI721_OBDMAC_DSWP(x) (0x61050 + (x) * 0x1000) 359#define TSI721_OBDMAC_DSWP_MASK 0x0007ffff 360 361#define TSI721_RQRPTO 0x60010 362#define TSI721_RQRPTO_MASK 0x00ffffff 363#define TSI721_RQRPTO_VAL 400 /* Response TO value */ 364 365/* 366 * Inbound Messaging Engine Registers 367 * x = 0..7 368 */ 369 370#define TSI721_IB_DEVID_GLOBAL 0xffff 371#define TSI721_IBDMAC_FQBL(x) (0x61200 + (x) * 0x1000) 372#define TSI721_IBDMAC_FQBL_MASK 0xffffffc0 373 374#define TSI721_IBDMAC_FQBH(x) (0x61204 + (x) * 0x1000) 375#define TSI721_IBDMAC_FQBH_MASK 0xffffffff 376 377#define TSI721_IBDMAC_FQSZ_ENTRY_INX TSI721_IMSGD_RING_SIZE 378#define TSI721_IBDMAC_FQSZ(x) (0x61208 + (x) * 0x1000) 379#define TSI721_IBDMAC_FQSZ_MASK 0x0000000f 380 381#define TSI721_IBDMAC_FQRP(x) (0x6120c + (x) * 0x1000) 382#define TSI721_IBDMAC_FQRP_MASK 0x0007ffff 383 384#define TSI721_IBDMAC_FQWP(x) (0x61210 + (x) * 0x1000) 385#define TSI721_IBDMAC_FQWP_MASK 0x0007ffff 386 387#define TSI721_IBDMAC_FQTH(x) (0x61214 + (x) * 0x1000) 388#define TSI721_IBDMAC_FQTH_MASK 0x0007ffff 389 390#define TSI721_IB_DEVID 0x60020 391#define TSI721_IB_DEVID_MASK 0x0000ffff 392 393#define TSI721_IBDMAC_CTL(x) (0x61240 + (x) * 0x1000) 394#define TSI721_IBDMAC_CTL_MASK 0x00000003 395#define TSI721_IBDMAC_CTL_SUSPEND 0x00000002 396#define TSI721_IBDMAC_CTL_INIT 0x00000001 397 398#define TSI721_IBDMAC_STS(x) (0x61244 + (x) * 0x1000) 399#define TSI721_IBDMAC_STS_MASK 0x007f0000 400#define TSI721_IBSMAC_STS_ABORT 0x00400000 401#define TSI721_IBSMAC_STS_RUN 0x00200000 402#define TSI721_IBSMAC_STS_CS 0x001f0000 403 404#define TSI721_IBDMAC_INT(x) (0x61248 + (x) * 0x1000) 405#define TSI721_IBDMAC_INTSET(x) (0x6124c + (x) * 0x1000) 406#define TSI721_IBDMAC_INTE(x) (0x61250 + (x) * 0x1000) 407#define TSI721_IBDMAC_INT_MASK 0x0000100f 408#define TSI721_IBDMAC_INT_SRTO 0x00001000 409#define TSI721_IBDMAC_INT_SUSPENDED 0x00000008 410#define TSI721_IBDMAC_INT_PC_ERROR 0x00000004 411#define TSI721_IBDMAC_INT_FQ_LOW 0x00000002 412#define TSI721_IBDMAC_INT_DQ_RCV 0x00000001 413#define TSI721_IBDMAC_INT_ALL TSI721_IBDMAC_INT_MASK 414 415#define TSI721_IBDMAC_PWE(x) (0x61254 + (x) * 0x1000) 416#define TSI721_IBDMAC_PWE_MASK 0x00001700 417#define TSI721_IBDMAC_PWE_SRTO 0x00001000 418#define TSI721_IBDMAC_PWE_ILL_FMT 0x00000400 419#define TSI721_IBDMAC_PWE_ILL_DEC 0x00000200 420#define TSI721_IBDMAC_PWE_IMP_SP 0x00000100 421 422#define TSI721_IBDMAC_DQBL(x) (0x61300 + (x) * 0x1000) 423#define TSI721_IBDMAC_DQBL_MASK 0xffffffc0 424#define TSI721_IBDMAC_DQBL_ADDR 0xffffffc0 425 426#define TSI721_IBDMAC_DQBH(x) (0x61304 + (x) * 0x1000) 427#define TSI721_IBDMAC_DQBH_MASK 0xffffffff 428 429#define TSI721_IBDMAC_DQRP(x) (0x61308 + (x) * 0x1000) 430#define TSI721_IBDMAC_DQRP_MASK 0x0007ffff 431 432#define TSI721_IBDMAC_DQWR(x) (0x6130c + (x) * 0x1000) 433#define TSI721_IBDMAC_DQWR_MASK 0x0007ffff 434 435#define TSI721_IBDMAC_DQSZ(x) (0x61314 + (x) * 0x1000) 436#define TSI721_IBDMAC_DQSZ_MASK 0x0000000f 437 438/* 439 * Messaging Engine Interrupts 440 */ 441 442#define TSI721_SMSG_PWE 0x6a004 443 444#define TSI721_SMSG_INTE 0x6a000 445#define TSI721_SMSG_INT 0x6a008 446#define TSI721_SMSG_INTSET 0x6a010 447#define TSI721_SMSG_INT_MASK 0x0086ffff 448#define TSI721_SMSG_INT_UNS_RSP 0x00800000 449#define TSI721_SMSG_INT_ECC_NCOR 0x00040000 450#define TSI721_SMSG_INT_ECC_COR 0x00020000 451#define TSI721_SMSG_INT_ECC_NCOR_CH 0x0000ff00 452#define TSI721_SMSG_INT_ECC_COR_CH 0x000000ff 453 454#define TSI721_SMSG_ECC_LOG 0x6a014 455#define TSI721_SMSG_ECC_LOG_MASK 0x00070007 456#define TSI721_SMSG_ECC_LOG_ECC_NCOR_M 0x00070000 457#define TSI721_SMSG_ECC_LOG_ECC_COR_M 0x00000007 458 459#define TSI721_RETRY_GEN_CNT 0x6a100 460#define TSI721_RETRY_GEN_CNT_MASK 0xffffffff 461 462#define TSI721_RETRY_RX_CNT 0x6a104 463#define TSI721_RETRY_RX_CNT_MASK 0xffffffff 464 465#define TSI721_SMSG_ECC_COR_LOG(x) (0x6a300 + (x) * 4) 466#define TSI721_SMSG_ECC_COR_LOG_MASK 0x000000ff 467 468#define TSI721_SMSG_ECC_NCOR(x) (0x6a340 + (x) * 4) 469#define TSI721_SMSG_ECC_NCOR_MASK 0x000000ff 470 471/* 472 * Block DMA Descriptors 473 */ 474 475struct tsi721_dma_desc { 476 __le32 type_id; 477 478#define TSI721_DMAD_DEVID 0x0000ffff 479#define TSI721_DMAD_CRF 0x00010000 480#define TSI721_DMAD_PRIO 0x00060000 481#define TSI721_DMAD_RTYPE 0x00780000 482#define TSI721_DMAD_IOF 0x08000000 483#define TSI721_DMAD_DTYPE 0xe0000000 484 485 __le32 bcount; 486 487#define TSI721_DMAD_BCOUNT1 0x03ffffff /* if DTYPE == 1 */ 488#define TSI721_DMAD_BCOUNT2 0x0000000f /* if DTYPE == 2 */ 489#define TSI721_DMAD_TT 0x0c000000 490#define TSI721_DMAD_RADDR0 0xc0000000 491 492 union { 493 __le32 raddr_lo; /* if DTYPE == (1 || 2) */ 494 __le32 next_lo; /* if DTYPE == 3 */ 495 }; 496 497#define TSI721_DMAD_CFGOFF 0x00ffffff 498#define TSI721_DMAD_HOPCNT 0xff000000 499 500 union { 501 __le32 raddr_hi; /* if DTYPE == (1 || 2) */ 502 __le32 next_hi; /* if DTYPE == 3 */ 503 }; 504 505 union { 506 struct { /* if DTYPE == 1 */ 507 __le32 bufptr_lo; 508 __le32 bufptr_hi; 509 __le32 s_dist; 510 __le32 s_size; 511 } t1; 512 __le32 data[4]; /* if DTYPE == 2 */ 513 u32 reserved[4]; /* if DTYPE == 3 */ 514 }; 515} __aligned(32); 516 517/* 518 * Inbound Messaging Descriptor 519 */ 520struct tsi721_imsg_desc { 521 __le32 type_id; 522 523#define TSI721_IMD_DEVID 0x0000ffff 524#define TSI721_IMD_CRF 0x00010000 525#define TSI721_IMD_PRIO 0x00060000 526#define TSI721_IMD_TT 0x00180000 527#define TSI721_IMD_DTYPE 0xe0000000 528 529 __le32 msg_info; 530 531#define TSI721_IMD_BCOUNT 0x00000ff8 532#define TSI721_IMD_SSIZE 0x0000f000 533#define TSI721_IMD_LETER 0x00030000 534#define TSI721_IMD_XMBOX 0x003c0000 535#define TSI721_IMD_MBOX 0x00c00000 536#define TSI721_IMD_CS 0x78000000 537#define TSI721_IMD_HO 0x80000000 538 539 __le32 bufptr_lo; 540 __le32 bufptr_hi; 541 u32 reserved[12]; 542 543} __aligned(64); 544 545/* 546 * Outbound Messaging Descriptor 547 */ 548struct tsi721_omsg_desc { 549 __le32 type_id; 550 551#define TSI721_OMD_DEVID 0x0000ffff 552#define TSI721_OMD_CRF 0x00010000 553#define TSI721_OMD_PRIO 0x00060000 554#define TSI721_OMD_IOF 0x08000000 555#define TSI721_OMD_DTYPE 0xe0000000 556#define TSI721_OMD_RSRVD 0x17f80000 557 558 __le32 msg_info; 559 560#define TSI721_OMD_BCOUNT 0x00000ff8 561#define TSI721_OMD_SSIZE 0x0000f000 562#define TSI721_OMD_LETER 0x00030000 563#define TSI721_OMD_XMBOX 0x003c0000 564#define TSI721_OMD_MBOX 0x00c00000 565#define TSI721_OMD_TT 0x0c000000 566 567 union { 568 __le32 bufptr_lo; /* if DTYPE == 4 */ 569 __le32 next_lo; /* if DTYPE == 5 */ 570 }; 571 572 union { 573 __le32 bufptr_hi; /* if DTYPE == 4 */ 574 __le32 next_hi; /* if DTYPE == 5 */ 575 }; 576 577} __aligned(16); 578 579struct tsi721_dma_sts { 580 __le64 desc_sts[8]; 581} __aligned(64); 582 583struct tsi721_desc_sts_fifo { 584 union { 585 __le64 da64; 586 struct { 587 __le32 lo; 588 __le32 hi; 589 } da32; 590 } stat[8]; 591} __aligned(64); 592 593/* Descriptor types for BDMA and Messaging blocks */ 594enum dma_dtype { 595 DTYPE1 = 1, /* Data Transfer DMA Descriptor */ 596 DTYPE2 = 2, /* Immediate Data Transfer DMA Descriptor */ 597 DTYPE3 = 3, /* Block Pointer DMA Descriptor */ 598 DTYPE4 = 4, /* Outbound Msg DMA Descriptor */ 599 DTYPE5 = 5, /* OB Messaging Block Pointer Descriptor */ 600 DTYPE6 = 6 /* Inbound Messaging Descriptor */ 601}; 602 603enum dma_rtype { 604 NREAD = 0, 605 LAST_NWRITE_R = 1, 606 ALL_NWRITE = 2, 607 ALL_NWRITE_R = 3, 608 MAINT_RD = 4, 609 MAINT_WR = 5 610}; 611 612/* 613 * mport Driver Definitions 614 */ 615#define TSI721_DMA_CHNUM TSI721_DMA_MAXCH 616 617#define TSI721_DMACH_MAINT 0 /* DMA channel for maint requests */ 618#define TSI721_DMACH_MAINT_NBD 32 /* Number of BDs for maint requests */ 619 620#define TSI721_DMACH_DMA 1 /* DMA channel for data transfers */ 621 622#define MSG_DMA_ENTRY_INX_TO_SIZE(x) ((0x10 << (x)) & 0xFFFF0) 623 624enum tsi721_smsg_int_flag { 625 SMSG_INT_NONE = 0x00000000, 626 SMSG_INT_ECC_COR_CH = 0x000000ff, 627 SMSG_INT_ECC_NCOR_CH = 0x0000ff00, 628 SMSG_INT_ECC_COR = 0x00020000, 629 SMSG_INT_ECC_NCOR = 0x00040000, 630 SMSG_INT_UNS_RSP = 0x00800000, 631 SMSG_INT_ALL = 0x0006ffff 632}; 633 634/* Structures */ 635 636#ifdef CONFIG_RAPIDIO_DMA_ENGINE 637 638struct tsi721_tx_desc { 639 struct dma_async_tx_descriptor txd; 640 struct tsi721_dma_desc *hw_desc; 641 u16 destid; 642 /* low 64-bits of 66-bit RIO address */ 643 u64 rio_addr; 644 /* upper 2-bits of 66-bit RIO address */ 645 u8 rio_addr_u; 646 bool interrupt; 647 struct list_head desc_node; 648 struct list_head tx_list; 649}; 650 651struct tsi721_bdma_chan { 652 int id; 653 void __iomem *regs; 654 int bd_num; /* number of buffer descriptors */ 655 void *bd_base; /* start of DMA descriptors */ 656 dma_addr_t bd_phys; 657 void *sts_base; /* start of DMA BD status FIFO */ 658 dma_addr_t sts_phys; 659 int sts_size; 660 u32 sts_rdptr; 661 u32 wr_count; 662 u32 wr_count_next; 663 664 struct dma_chan dchan; 665 struct tsi721_tx_desc *tx_desc; 666 spinlock_t lock; 667 struct list_head active_list; 668 struct list_head queue; 669 struct list_head free_list; 670 dma_cookie_t completed_cookie; 671 struct tasklet_struct tasklet; 672}; 673 674#endif /* CONFIG_RAPIDIO_DMA_ENGINE */ 675 676struct tsi721_bdma_maint { 677 int ch_id; /* BDMA channel number */ 678 int bd_num; /* number of buffer descriptors */ 679 void *bd_base; /* start of DMA descriptors */ 680 dma_addr_t bd_phys; 681 void *sts_base; /* start of DMA BD status FIFO */ 682 dma_addr_t sts_phys; 683 int sts_size; 684}; 685 686struct tsi721_imsg_ring { 687 u32 size; 688 /* VA/PA of data buffers for incoming messages */ 689 void *buf_base; 690 dma_addr_t buf_phys; 691 /* VA/PA of circular free buffer list */ 692 void *imfq_base; 693 dma_addr_t imfq_phys; 694 /* VA/PA of Inbound message descriptors */ 695 void *imd_base; 696 dma_addr_t imd_phys; 697 /* Inbound Queue buffer pointers */ 698 void *imq_base[TSI721_IMSGD_RING_SIZE]; 699 700 u32 rx_slot; 701 void *dev_id; 702 u32 fq_wrptr; 703 u32 desc_rdptr; 704 spinlock_t lock; 705}; 706 707struct tsi721_omsg_ring { 708 u32 size; 709 /* VA/PA of OB Msg descriptors */ 710 void *omd_base; 711 dma_addr_t omd_phys; 712 /* VA/PA of OB Msg data buffers */ 713 void *omq_base[TSI721_OMSGD_RING_SIZE]; 714 dma_addr_t omq_phys[TSI721_OMSGD_RING_SIZE]; 715 /* VA/PA of OB Msg descriptor status FIFO */ 716 void *sts_base; 717 dma_addr_t sts_phys; 718 u32 sts_size; /* # of allocated status entries */ 719 u32 sts_rdptr; 720 721 u32 tx_slot; 722 void *dev_id; 723 u32 wr_count; 724 spinlock_t lock; 725}; 726 727enum tsi721_flags { 728 TSI721_USING_MSI = (1 << 0), 729 TSI721_USING_MSIX = (1 << 1), 730 TSI721_IMSGID_SET = (1 << 2), 731}; 732 733#ifdef CONFIG_PCI_MSI 734/* 735 * MSI-X Table Entries (0 ... 69) 736 */ 737#define TSI721_MSIX_DMACH_DONE(x) (0 + (x)) 738#define TSI721_MSIX_DMACH_INT(x) (8 + (x)) 739#define TSI721_MSIX_BDMA_INT 16 740#define TSI721_MSIX_OMSG_DONE(x) (17 + (x)) 741#define TSI721_MSIX_OMSG_INT(x) (25 + (x)) 742#define TSI721_MSIX_IMSG_DQ_RCV(x) (33 + (x)) 743#define TSI721_MSIX_IMSG_INT(x) (41 + (x)) 744#define TSI721_MSIX_MSG_INT 49 745#define TSI721_MSIX_SR2PC_IDBQ_RCV(x) (50 + (x)) 746#define TSI721_MSIX_SR2PC_CH_INT(x) (58 + (x)) 747#define TSI721_MSIX_SR2PC_INT 66 748#define TSI721_MSIX_PC2SR_INT 67 749#define TSI721_MSIX_SRIO_MAC_INT 68 750#define TSI721_MSIX_I2C_INT 69 751 752/* MSI-X vector and init table entry indexes */ 753enum tsi721_msix_vect { 754 TSI721_VECT_IDB, 755 TSI721_VECT_PWRX, /* PW_RX is part of SRIO MAC Interrupt reporting */ 756 TSI721_VECT_OMB0_DONE, 757 TSI721_VECT_OMB1_DONE, 758 TSI721_VECT_OMB2_DONE, 759 TSI721_VECT_OMB3_DONE, 760 TSI721_VECT_OMB0_INT, 761 TSI721_VECT_OMB1_INT, 762 TSI721_VECT_OMB2_INT, 763 TSI721_VECT_OMB3_INT, 764 TSI721_VECT_IMB0_RCV, 765 TSI721_VECT_IMB1_RCV, 766 TSI721_VECT_IMB2_RCV, 767 TSI721_VECT_IMB3_RCV, 768 TSI721_VECT_IMB0_INT, 769 TSI721_VECT_IMB1_INT, 770 TSI721_VECT_IMB2_INT, 771 TSI721_VECT_IMB3_INT, 772#ifdef CONFIG_RAPIDIO_DMA_ENGINE 773 TSI721_VECT_DMA0_DONE, 774 TSI721_VECT_DMA1_DONE, 775 TSI721_VECT_DMA2_DONE, 776 TSI721_VECT_DMA3_DONE, 777 TSI721_VECT_DMA4_DONE, 778 TSI721_VECT_DMA5_DONE, 779 TSI721_VECT_DMA6_DONE, 780 TSI721_VECT_DMA7_DONE, 781 TSI721_VECT_DMA0_INT, 782 TSI721_VECT_DMA1_INT, 783 TSI721_VECT_DMA2_INT, 784 TSI721_VECT_DMA3_INT, 785 TSI721_VECT_DMA4_INT, 786 TSI721_VECT_DMA5_INT, 787 TSI721_VECT_DMA6_INT, 788 TSI721_VECT_DMA7_INT, 789#endif /* CONFIG_RAPIDIO_DMA_ENGINE */ 790 TSI721_VECT_MAX 791}; 792 793#define IRQ_DEVICE_NAME_MAX 64 794 795struct msix_irq { 796 u16 vector; 797 char irq_name[IRQ_DEVICE_NAME_MAX]; 798}; 799#endif /* CONFIG_PCI_MSI */ 800 801struct tsi721_device { 802 struct pci_dev *pdev; 803 struct rio_mport *mport; 804 u32 flags; 805 void __iomem *regs; 806#ifdef CONFIG_PCI_MSI 807 struct msix_irq msix[TSI721_VECT_MAX]; 808#endif 809 /* Doorbells */ 810 void __iomem *odb_base; 811 void *idb_base; 812 dma_addr_t idb_dma; 813 struct work_struct idb_work; 814 u32 db_discard_count; 815 816 /* Inbound Port-Write */ 817 struct work_struct pw_work; 818 struct kfifo pw_fifo; 819 spinlock_t pw_fifo_lock; 820 u32 pw_discard_count; 821 822 /* BDMA Engine */ 823 struct tsi721_bdma_maint mdma; /* Maintenance rd/wr request channel */ 824 825#ifdef CONFIG_RAPIDIO_DMA_ENGINE 826 struct tsi721_bdma_chan bdma[TSI721_DMA_CHNUM]; 827#endif 828 829 /* Inbound Messaging */ 830 int imsg_init[TSI721_IMSG_CHNUM]; 831 struct tsi721_imsg_ring imsg_ring[TSI721_IMSG_CHNUM]; 832 833 /* Outbound Messaging */ 834 int omsg_init[TSI721_OMSG_CHNUM]; 835 struct tsi721_omsg_ring omsg_ring[TSI721_OMSG_CHNUM]; 836}; 837 838#ifdef CONFIG_RAPIDIO_DMA_ENGINE 839extern void tsi721_bdma_handler(struct tsi721_bdma_chan *bdma_chan); 840extern int __devinit tsi721_register_dma(struct tsi721_device *priv); 841#endif 842 843#endif