Skip to content
Snippets Groups Projects
Commit 253f47f3 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

Blackfin: bfin_nand: convert to portmux framework


Rather than bang MMRs directly, use the new portmux framework to handle
the details.

Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
Acked-by: default avatarScott Wood <scottwood@freescale.com>
parent 8339ad73
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,7 @@
#include <nand.h>
#include <asm/blackfin.h>
#include <asm/portmux.h>
/* Bit masks for NFC_CTL */
......@@ -337,6 +338,12 @@ static struct nand_ecclayout bootrom_ecclayout = {
*/
int board_nand_init(struct nand_chip *chip)
{
const unsigned short pins[] = {
P_NAND_CE, P_NAND_RB, P_NAND_D0, P_NAND_D1, P_NAND_D2,
P_NAND_D3, P_NAND_D4, P_NAND_D5, P_NAND_D6, P_NAND_D7,
P_NAND_WE, P_NAND_RE, P_NAND_CLE, P_NAND_ALE, 0,
};
pr_stamp();
/* set width/ecc/timings/etc... */
......@@ -347,14 +354,7 @@ int board_nand_init(struct nand_chip *chip)
bfin_write_NFC_IRQSTAT(0xffff);
/* enable GPIO function enable register */
#ifdef __ADSPBF54x__
bfin_write_PORTJ_FER(bfin_read_PORTJ_FER() | 6);
#elif defined(__ADSPBF52x__)
bfin_write_PORTH_FER(bfin_read_PORTH_FER() | 0xFCFF);
bfin_write_PORTH_MUX(0);
#else
# error no support for this variant
#endif
peripheral_request_list(pins, "bfin_nand");
chip->cmd_ctrl = bfin_nfc_cmd_ctrl;
chip->read_buf = bfin_nfc_read_buf;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment