diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-3945-hw.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-3945-hw.h | 135 |
1 files changed, 0 insertions, 135 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-3945-hw.h b/drivers/net/wireless/iwlwifi/iwl-3945-hw.h index 6693767adc9f..269224ba23b6 100644 --- a/drivers/net/wireless/iwlwifi/iwl-3945-hw.h +++ b/drivers/net/wireless/iwlwifi/iwl-3945-hw.h | |||
@@ -321,141 +321,6 @@ struct iwl3945_eeprom { | |||
321 | #define PCI_REG_WUM8 0x0E8 | 321 | #define PCI_REG_WUM8 0x0E8 |
322 | #define PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT (0x80000000) | 322 | #define PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT (0x80000000) |
323 | 323 | ||
324 | /*=== CSR (control and status registers) ===*/ | ||
325 | #define CSR_BASE (0x000) | ||
326 | |||
327 | #define CSR_HW_IF_CONFIG_REG (CSR_BASE+0x000) /* hardware interface config */ | ||
328 | #define CSR_INT_COALESCING (CSR_BASE+0x004) /* accum ints, 32-usec units */ | ||
329 | #define CSR_INT (CSR_BASE+0x008) /* host interrupt status/ack */ | ||
330 | #define CSR_INT_MASK (CSR_BASE+0x00c) /* host interrupt enable */ | ||
331 | #define CSR_FH_INT_STATUS (CSR_BASE+0x010) /* busmaster int status/ack*/ | ||
332 | #define CSR_GPIO_IN (CSR_BASE+0x018) /* read external chip pins */ | ||
333 | #define CSR_RESET (CSR_BASE+0x020) /* busmaster enable, NMI, etc*/ | ||
334 | #define CSR_GP_CNTRL (CSR_BASE+0x024) | ||
335 | |||
336 | /* | ||
337 | * Hardware revision info | ||
338 | * Bit fields: | ||
339 | * 31-8: Reserved | ||
340 | * 7-4: Type of device: 0x0 = 4965, 0xd = 3945 | ||
341 | * 3-2: Revision step: 0 = A, 1 = B, 2 = C, 3 = D | ||
342 | * 1-0: "Dash" value, as in A-1, etc. | ||
343 | */ | ||
344 | #define CSR_HW_REV (CSR_BASE+0x028) | ||
345 | |||
346 | /* EEPROM reads */ | ||
347 | #define CSR_EEPROM_REG (CSR_BASE+0x02c) | ||
348 | #define CSR_EEPROM_GP (CSR_BASE+0x030) | ||
349 | #define CSR_GP_UCODE (CSR_BASE+0x044) | ||
350 | #define CSR_UCODE_DRV_GP1 (CSR_BASE+0x054) | ||
351 | #define CSR_UCODE_DRV_GP1_SET (CSR_BASE+0x058) | ||
352 | #define CSR_UCODE_DRV_GP1_CLR (CSR_BASE+0x05c) | ||
353 | #define CSR_UCODE_DRV_GP2 (CSR_BASE+0x060) | ||
354 | #define CSR_GIO_CHICKEN_BITS (CSR_BASE+0x100) | ||
355 | |||
356 | /* Analog phase-lock-loop configuration (3945 only) | ||
357 | * Set bit 24. */ | ||
358 | #define CSR_ANA_PLL_CFG (CSR_BASE+0x20c) | ||
359 | |||
360 | /* Bits for CSR_HW_IF_CONFIG_REG */ | ||
361 | #define CSR_HW_IF_CONFIG_REG_BIT_ALMAGOR_MB (0x00000100) | ||
362 | #define CSR_HW_IF_CONFIG_REG_BIT_ALMAGOR_MM (0x00000200) | ||
363 | #define CSR_HW_IF_CONFIG_REG_BIT_SKU_MRC (0x00000400) | ||
364 | #define CSR_HW_IF_CONFIG_REG_BIT_BOARD_TYPE (0x00000800) | ||
365 | #define CSR_HW_IF_CONFIG_REG_BITS_SILICON_TYPE_A (0x00000000) | ||
366 | #define CSR_HW_IF_CONFIG_REG_BITS_SILICON_TYPE_B (0x00001000) | ||
367 | #define CSR_HW_IF_CONFIG_REG_BIT_EEPROM_OWN_SEM (0x00200000) | ||
368 | |||
369 | /* interrupt flags in INTA, set by uCode or hardware (e.g. dma), | ||
370 | * acknowledged (reset) by host writing "1" to flagged bits. */ | ||
371 | #define CSR_INT_BIT_FH_RX (1 << 31) /* Rx DMA, cmd responses, FH_INT[17:16] */ | ||
372 | #define CSR_INT_BIT_HW_ERR (1 << 29) /* DMA hardware error FH_INT[31] */ | ||
373 | #define CSR_INT_BIT_DNLD (1 << 28) /* uCode Download */ | ||
374 | #define CSR_INT_BIT_FH_TX (1 << 27) /* Tx DMA FH_INT[1:0] */ | ||
375 | #define CSR_INT_BIT_SCD (1 << 26) /* TXQ pointer advanced */ | ||
376 | #define CSR_INT_BIT_SW_ERR (1 << 25) /* uCode error */ | ||
377 | #define CSR_INT_BIT_RF_KILL (1 << 7) /* HW RFKILL switch GP_CNTRL[27] toggled */ | ||
378 | #define CSR_INT_BIT_CT_KILL (1 << 6) /* Critical temp (chip too hot) rfkill */ | ||
379 | #define CSR_INT_BIT_SW_RX (1 << 3) /* Rx, command responses, 3945 */ | ||
380 | #define CSR_INT_BIT_WAKEUP (1 << 1) /* NIC controller waking up (pwr mgmt) */ | ||
381 | #define CSR_INT_BIT_ALIVE (1 << 0) /* uCode interrupts once it initializes */ | ||
382 | |||
383 | #define CSR_INI_SET_MASK (CSR_INT_BIT_FH_RX | \ | ||
384 | CSR_INT_BIT_HW_ERR | \ | ||
385 | CSR_INT_BIT_FH_TX | \ | ||
386 | CSR_INT_BIT_SW_ERR | \ | ||
387 | CSR_INT_BIT_RF_KILL | \ | ||
388 | CSR_INT_BIT_SW_RX | \ | ||
389 | CSR_INT_BIT_WAKEUP | \ | ||
390 | CSR_INT_BIT_ALIVE) | ||
391 | |||
392 | /* interrupt flags in FH (flow handler) (PCI busmaster DMA) */ | ||
393 | #define CSR_FH_INT_BIT_ERR (1 << 31) /* Error */ | ||
394 | #define CSR_FH_INT_BIT_HI_PRIOR (1 << 30) /* High priority Rx, bypass coalescing */ | ||
395 | #define CSR_FH_INT_BIT_RX_CHNL2 (1 << 18) /* Rx channel 2 (3945 only) */ | ||
396 | #define CSR_FH_INT_BIT_RX_CHNL1 (1 << 17) /* Rx channel 1 */ | ||
397 | #define CSR_FH_INT_BIT_RX_CHNL0 (1 << 16) /* Rx channel 0 */ | ||
398 | #define CSR_FH_INT_BIT_TX_CHNL6 (1 << 6) /* Tx channel 6 (3945 only) */ | ||
399 | #define CSR_FH_INT_BIT_TX_CHNL1 (1 << 1) /* Tx channel 1 */ | ||
400 | #define CSR_FH_INT_BIT_TX_CHNL0 (1 << 0) /* Tx channel 0 */ | ||
401 | |||
402 | #define CSR_FH_INT_RX_MASK (CSR_FH_INT_BIT_HI_PRIOR | \ | ||
403 | CSR_FH_INT_BIT_RX_CHNL2 | \ | ||
404 | CSR_FH_INT_BIT_RX_CHNL1 | \ | ||
405 | CSR_FH_INT_BIT_RX_CHNL0) | ||
406 | |||
407 | #define CSR_FH_INT_TX_MASK (CSR_FH_INT_BIT_TX_CHNL6 | \ | ||
408 | CSR_FH_INT_BIT_TX_CHNL1 | \ | ||
409 | CSR_FH_INT_BIT_TX_CHNL0) | ||
410 | |||
411 | |||
412 | /* RESET */ | ||
413 | #define CSR_RESET_REG_FLAG_NEVO_RESET (0x00000001) | ||
414 | #define CSR_RESET_REG_FLAG_FORCE_NMI (0x00000002) | ||
415 | #define CSR_RESET_REG_FLAG_SW_RESET (0x00000080) | ||
416 | #define CSR_RESET_REG_FLAG_MASTER_DISABLED (0x00000100) | ||
417 | #define CSR_RESET_REG_FLAG_STOP_MASTER (0x00000200) | ||
418 | |||
419 | /* GP (general purpose) CONTROL */ | ||
420 | #define CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY (0x00000001) | ||
421 | #define CSR_GP_CNTRL_REG_FLAG_INIT_DONE (0x00000004) | ||
422 | #define CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ (0x00000008) | ||
423 | #define CSR_GP_CNTRL_REG_FLAG_GOING_TO_SLEEP (0x00000010) | ||
424 | |||
425 | #define CSR_GP_CNTRL_REG_VAL_MAC_ACCESS_EN (0x00000001) | ||
426 | |||
427 | #define CSR_GP_CNTRL_REG_MSK_POWER_SAVE_TYPE (0x07000000) | ||
428 | #define CSR_GP_CNTRL_REG_FLAG_MAC_POWER_SAVE (0x04000000) | ||
429 | #define CSR_GP_CNTRL_REG_FLAG_HW_RF_KILL_SW (0x08000000) | ||
430 | |||
431 | |||
432 | /* EEPROM REG */ | ||
433 | #define CSR_EEPROM_REG_READ_VALID_MSK (0x00000001) | ||
434 | #define CSR_EEPROM_REG_BIT_CMD (0x00000002) | ||
435 | |||
436 | /* EEPROM GP */ | ||
437 | #define CSR_EEPROM_GP_VALID_MSK (0x00000006) | ||
438 | #define CSR_EEPROM_GP_BAD_SIGNATURE (0x00000000) | ||
439 | #define CSR_EEPROM_GP_IF_OWNER_MSK (0x00000180) | ||
440 | |||
441 | /* UCODE DRV GP */ | ||
442 | #define CSR_UCODE_DRV_GP1_BIT_MAC_SLEEP (0x00000001) | ||
443 | #define CSR_UCODE_SW_BIT_RFKILL (0x00000002) | ||
444 | #define CSR_UCODE_DRV_GP1_BIT_CMD_BLOCKED (0x00000004) | ||
445 | #define CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT (0x00000008) | ||
446 | |||
447 | /* GPIO */ | ||
448 | #define CSR_GPIO_IN_BIT_AUX_POWER (0x00000200) | ||
449 | #define CSR_GPIO_IN_VAL_VAUX_PWR_SRC (0x00000000) | ||
450 | #define CSR_GPIO_IN_VAL_VMAIN_PWR_SRC CSR_GPIO_IN_BIT_AUX_POWER | ||
451 | |||
452 | /* GI Chicken Bits */ | ||
453 | #define CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX (0x00800000) | ||
454 | #define CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER (0x20000000) | ||
455 | |||
456 | /* CSR_ANA_PLL_CFG */ | ||
457 | #define CSR_ANA_PLL_CFG_SH (0x00880300) | ||
458 | |||
459 | /*=== HBUS (Host-side Bus) ===*/ | 324 | /*=== HBUS (Host-side Bus) ===*/ |
460 | #define HBUS_BASE (0x400) | 325 | #define HBUS_BASE (0x400) |
461 | 326 | ||