~ubuntu-branches/ubuntu/wily/linux-ti-omap4/wily

« back to all changes in this revision

Viewing changes to drivers/net/ethernet/intel/e1000e/defines.h

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati, Ubuntu: 3.5.0-26.42
  • Date: 2013-03-14 15:21:40 UTC
  • mfrom: (76.1.1 quantal-proposed)
  • Revision ID: package-import@ubuntu.com-20130314152140-tl4mkjmxa038tm3h
Tags: 3.5.0-221.31
* Release Tracking Bug
  - LP: #1153648

[ Paolo Pisati ]

* rebased on Ubuntu-3.5.0-26.42

[ Ubuntu: 3.5.0-26.42 ]

* Release Tracking Bug
  - LP: #1152715
* ubuntu: overlayfs -- fix missmerge of vfs_open changes
  - LP: #1122094, #1147678

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
#define E1000_CTRL_FRCDPX   0x00001000  /* Force Duplex */
234
234
#define E1000_CTRL_LANPHYPC_OVERRIDE 0x00010000 /* SW control of LANPHYPC */
235
235
#define E1000_CTRL_LANPHYPC_VALUE    0x00020000 /* SW value of LANPHYPC */
 
236
#define E1000_CTRL_MEHE     0x00080000  /* Memory Error Handling Enable */
236
237
#define E1000_CTRL_SWDPIN0  0x00040000  /* SWDPIN 0 value */
237
238
#define E1000_CTRL_SWDPIN1  0x00080000  /* SWDPIN 1 value */
238
239
#define E1000_CTRL_SWDPIO0  0x00400000  /* SWDPIN 0 Input or output */
391
392
 
392
393
#define E1000_PBS_16K E1000_PBA_16K
393
394
 
 
395
/* Uncorrectable/correctable ECC Error counts and enable bits */
 
396
#define E1000_PBECCSTS_CORR_ERR_CNT_MASK        0x000000FF
 
397
#define E1000_PBECCSTS_UNCORR_ERR_CNT_MASK      0x0000FF00
 
398
#define E1000_PBECCSTS_UNCORR_ERR_CNT_SHIFT     8
 
399
#define E1000_PBECCSTS_ECC_ENABLE               0x00010000
 
400
 
394
401
#define IFS_MAX       80
395
402
#define IFS_MIN       40
396
403
#define IFS_RATIO     4
410
417
#define E1000_ICR_RXSEQ         0x00000008 /* Rx sequence error */
411
418
#define E1000_ICR_RXDMT0        0x00000010 /* Rx desc min. threshold (0) */
412
419
#define E1000_ICR_RXT0          0x00000080 /* Rx timer intr (ring 0) */
 
420
#define E1000_ICR_ECCER         0x00400000 /* Uncorrectable ECC Error */
413
421
#define E1000_ICR_INT_ASSERTED  0x80000000 /* If this bit asserted, the driver should claim the interrupt */
414
422
#define E1000_ICR_RXQ0          0x00100000 /* Rx Queue 0 Interrupt */
415
423
#define E1000_ICR_RXQ1          0x00200000 /* Rx Queue 1 Interrupt */
446
454
#define E1000_IMS_RXSEQ     E1000_ICR_RXSEQ     /* Rx sequence error */
447
455
#define E1000_IMS_RXDMT0    E1000_ICR_RXDMT0    /* Rx desc min. threshold */
448
456
#define E1000_IMS_RXT0      E1000_ICR_RXT0      /* Rx timer intr */
 
457
#define E1000_IMS_ECCER     E1000_ICR_ECCER     /* Uncorrectable ECC Error */
449
458
#define E1000_IMS_RXQ0      E1000_ICR_RXQ0      /* Rx Queue 0 Interrupt */
450
459
#define E1000_IMS_RXQ1      E1000_ICR_RXQ1      /* Rx Queue 1 Interrupt */
451
460
#define E1000_IMS_TXQ0      E1000_ICR_TXQ0      /* Tx Queue 0 Interrupt */