Commit e5cf1b75 authored by Alan Cox's avatar Alan Cox Committed by Greg Kroah-Hartman

Staging: et131x: clean up MMC_SRAM_

Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent df482a09
...@@ -2264,7 +2264,7 @@ typedef struct _MAC_STAT_t { /* Location: */ ...@@ -2264,7 +2264,7 @@ typedef struct _MAC_STAT_t { /* Location: */
/* START OF MMC REGISTER ADDRESS MAP */ /* START OF MMC REGISTER ADDRESS MAP */
/* /*
* structure for Main Memory Controller Control reg in mmc address map. * Main Memory Controller Control reg in mmc address map.
* located at address 0x7000 * located at address 0x7000
*/ */
...@@ -2277,31 +2277,13 @@ typedef struct _MAC_STAT_t { /* Location: */ ...@@ -2277,31 +2277,13 @@ typedef struct _MAC_STAT_t { /* Location: */
#define ET_MMC_FORCE_CE 64 #define ET_MMC_FORCE_CE 64
/* /*
* structure for Main Memory Controller Host Memory Access Address reg in mmc * Main Memory Controller Host Memory Access Address reg in mmc
* address map. Located at address 0x7004 * address map. Located at address 0x7004. Top 16 bits hold the address bits
*/ */
typedef union _MMC_SRAM_ACCESS_t {
u32 value; #define ET_SRAM_REQ_ACCESS 1
struct { #define ET_SRAM_WR_ACCESS 2
#ifdef _BIT_FIELDS_HTOL #define ET_SRAM_IS_CTRL 4
u32 byte_enable:16; /* bits 16-31 */
u32 reserved2:2; /* bits 14-15 */
u32 req_addr:10; /* bits 4-13 */
u32 reserved1:1; /* bit 3 */
u32 is_ctrl_word:1; /* bit 2 */
u32 wr_access:1; /* bit 1 */
u32 req_access:1; /* bit 0 */
#else
u32 req_access:1; /* bit 0 */
u32 wr_access:1; /* bit 1 */
u32 is_ctrl_word:1; /* bit 2 */
u32 reserved1:1; /* bit 3 */
u32 req_addr:10; /* bits 4-13 */
u32 reserved2:2; /* bits 14-15 */
u32 byte_enable:16; /* bits 16-31 */
#endif
} bits;
} MMC_SRAM_ACCESS_t, *PMMC_SRAM_ACCESS_t;
/* /*
* structure for Main Memory Controller Host Memory Access Data reg in mmc * structure for Main Memory Controller Host Memory Access Data reg in mmc
...@@ -2314,7 +2296,7 @@ typedef union _MMC_SRAM_ACCESS_t { ...@@ -2314,7 +2296,7 @@ typedef union _MMC_SRAM_ACCESS_t {
*/ */
typedef struct _MMC_t { /* Location: */ typedef struct _MMC_t { /* Location: */
u32 mmc_ctrl; /* 0x7000 */ u32 mmc_ctrl; /* 0x7000 */
MMC_SRAM_ACCESS_t sram_access; /* 0x7004 */ u32 sram_access; /* 0x7004 */
u32 sram_word1; /* 0x7008 */ u32 sram_word1; /* 0x7008 */
u32 sram_word2; /* 0x700C */ u32 sram_word2; /* 0x700C */
u32 sram_word3; /* 0x7010 */ u32 sram_word3; /* 0x7010 */
......
...@@ -115,18 +115,16 @@ void DumpTxQueueContents(int dbgLvl, struct et131x_adapter *etdev) ...@@ -115,18 +115,16 @@ void DumpTxQueueContents(int dbgLvl, struct et131x_adapter *etdev)
if (DBG_FLAGS(et131x_dbginfo) & dbgLvl) { if (DBG_FLAGS(et131x_dbginfo) & dbgLvl) {
for (TxQueueAddr = 0x200; TxQueueAddr < 0x3ff; TxQueueAddr++) { for (TxQueueAddr = 0x200; TxQueueAddr < 0x3ff; TxQueueAddr++) {
MMC_SRAM_ACCESS_t sram_access; u32 sram_access = readl(&mmc->sram_access);
sram_access &= 0xFFFF;
sram_access.value = readl(&mmc->sram_access.value); sram_access |= (TxQueueAddr << 16) | ET_SRAM_REQ_ACCESS;
sram_access.bits.req_addr = TxQueueAddr; writel(sram_access, &mmc->sram_access);
sram_access.bits.req_access = 1;
writel(sram_access.value, &mmc->sram_access.value);
DBG_PRINT("Addr 0x%x, Access 0x%08x\t" DBG_PRINT("Addr 0x%x, Access 0x%08x\t"
"Value 1 0x%08x, Value 2 0x%08x, " "Value 1 0x%08x, Value 2 0x%08x, "
"Value 3 0x%08x, Value 4 0x%08x, \n", "Value 3 0x%08x, Value 4 0x%08x, \n",
TxQueueAddr, TxQueueAddr,
readl(&mmc->sram_access.value), readl(&mmc->sram_access),
readl(&mmc->sram_word1), readl(&mmc->sram_word1),
readl(&mmc->sram_word2), readl(&mmc->sram_word2),
readl(&mmc->sram_word3), readl(&mmc->sram_word3),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment