Updated MMC/SD Card driver to support hot add and remove of the media (SD Cards) and enable write protect of SD Cards. Had to update pads for WP bit as it was not being programmed as a GPIO. I also changed some of the PAD #defins as there were only really 3 states, so OR things in the table in the .c file did not make a lot of sense.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10450 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
andrewfish
2010-04-30 19:43:11 +00:00
parent 0a0951ea84
commit 8c6151f2ba
5 changed files with 761 additions and 557 deletions

View File

@@ -280,10 +280,9 @@
#define WAKEUP_OFFSET 14
#define WAKEUP_MASK (0x2UL << WAKEUP_OFFSET)
#define PULLUDDISABLE (0x0UL << 0)
#define PULLUDENABLE BIT0
#define PULLTYPENOSELECT (0x0UL << 1)
#define PULLTYPESELECT BIT1
#define PULL_DOWN_SELECTED ((0x0UL << 1) | BIT0)
#define PULL_UP_SELECTED (BIT1 | BIT0)
#define PULL_DISABLED (0x0UL << 0)
#define OUTPUT (0x0UL) //Pin is configured in output only mode.
#define INPUT (0x1UL) //Pin is configured in bi-directional mode.