diff options
author | Dirk Behme | 2009-02-12 18:55:41 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD | 2009-02-22 18:29:10 +0100 |
commit | f956fd0338f4990793a10f767929ba4963665261 (patch) | |
tree | 44f670831d2fde5ea6104dbbd283390b825ce8bf /include | |
parent | 288f3cd912918b97919d13b6f7fb13fbddf74d68 (diff) |
OMAP3: Beagle: Add board revision detection
With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
which might need different software handling. For this, GPIO pin 171 (GPIO
module 6, offset 11) can be used to check for board revision. If this pin
is low, we have a rev C board. Else it must be a revision Ax or Bx board.
To handle board differences you can call function beagle_get_revision().
E.g.:
if (beagle_get_revision()) {
/* do special revision C stuff here */
}
Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-omap3/omap3.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-arm/arch-omap3/omap3.h b/include/asm-arm/arch-omap3/omap3.h index 7473656532e..0ddbd660ca1 100644 --- a/include/asm-arm/arch-omap3/omap3.h +++ b/include/asm-arm/arch-omap3/omap3.h @@ -97,7 +97,8 @@ typedef struct s32ktimer { typedef struct gpio { unsigned char res1[0x34]; unsigned int oe; /* 0x34 */ - unsigned char res2[0x58]; + unsigned int datain; /* 0x38 */ + unsigned char res2[0x54]; unsigned int cleardataout; /* 0x90 */ unsigned int setdataout; /* 0x94 */ } gpio_t; |