Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 107255
b: refs/heads/master
c: e491d23
h: refs/heads/master
i:
  107253: 043c46a
  107251: d664a5d
  107247: fd55904
v: v3
  • Loading branch information
Manuel Lauss authored and Pierre Ossman committed Aug 1, 2008
1 parent af3a8d0 commit 55924bb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b41e9c7b8e14ea57aa0fc05fd63a0de0e935d58d
refs/heads/master: e491d230fd398bb730e3c2dd734c5447463b9d38
8 changes: 7 additions & 1 deletion trunk/drivers/mmc/host/au1xmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,13 @@

/* Hardware definitions */
#define AU1XMMC_DESCRIPTOR_COUNT 1
#define AU1XMMC_DESCRIPTOR_SIZE 2048

/* max DMA seg size: 64KB on Au1100, 4MB on Au1200 */
#ifdef CONFIG_SOC_AU1100
#define AU1XMMC_DESCRIPTOR_SIZE 0x0000ffff
#else /* Au1200 */
#define AU1XMMC_DESCRIPTOR_SIZE 0x003fffff
#endif

#define AU1XMMC_OCR (MMC_VDD_27_28 | MMC_VDD_28_29 | MMC_VDD_29_30 | \
MMC_VDD_30_31 | MMC_VDD_31_32 | MMC_VDD_32_33 | \
Expand Down

0 comments on commit 55924bb

Please sign in to comment.