-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
board/ti/am335x: add support for beaglebone NOR Cape
This patch adds support of NOR cape[1] for both Beaglebone (white) and Beaglebone(Black) boards. NOR Flash on this cape is connected to GPMC chip-select[0] and accesses as external memory-mapped device. This cape has 128Mbits(16MBytes), x16, CFI compatible NOR Flash device. As GPMC chip-select[0] can be shared by multiple capes so NOR profile is not enabled by default in boards.cfg. Following changes are required to enable NOR cape detection when building am335x_boneblack board profile. Signed-off-by: Tom Rini <[email protected]>
- Loading branch information
1 parent
85eb0de
commit 3df3bc1
Showing
2 changed files
with
48 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,16 @@ void flash_cmd_reset(flash_info_t *info) | |
|
||
see also: | ||
http://www.mail-archive.com/[email protected]/msg24368.html | ||
|
||
|
||
Config Option | ||
|
||
CONFIG_SYS_MAX_FLASH_SECT: Number of sectors available on Flash device | ||
|
||
CONFIG_SYS_FLASH_CFI_WIDTH: Data-width of the flash device | ||
|
||
CONFIG_CMD_FLASH: Enables Flash command library | ||
|
||
CONFIG_FLASH_CFI_DRIVER: Enables CFI Flash driver | ||
|
||
CONFIG_FLASH_CFI_MTD: Enables MTD frame work for NOR Flash devices |