MIPS: RBTX4938: Add TOSHIBA_RBTX4938_MPLEX_KEEP
Add TOSHIBA_RBTX4938_MPLEX_KEEP to keep MPLEX settings by firmware. Also replace some printk with pr_info. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
7489436349
commit
e633237477
2 changed files with 12 additions and 3 deletions
|
@ -94,6 +94,8 @@ config TOSHIBA_RBTX4938_MPLEX_NAND
|
||||||
bool "NAND"
|
bool "NAND"
|
||||||
config TOSHIBA_RBTX4938_MPLEX_ATA
|
config TOSHIBA_RBTX4938_MPLEX_ATA
|
||||||
bool "ATA"
|
bool "ATA"
|
||||||
|
config TOSHIBA_RBTX4938_MPLEX_KEEP
|
||||||
|
bool "Keep firmware settings"
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
|
|
|
@ -174,23 +174,30 @@ static void __init rbtx4938_mem_setup(void)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_PIO58_61
|
#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_PIO58_61
|
||||||
printk(KERN_INFO "PIOSEL: disabling both ata and nand selection\n");
|
pr_info("PIOSEL: disabling both ATA and NAND selection\n");
|
||||||
txx9_clear64(&tx4938_ccfgptr->pcfg,
|
txx9_clear64(&tx4938_ccfgptr->pcfg,
|
||||||
TX4938_PCFG_NDF_SEL | TX4938_PCFG_ATA_SEL);
|
TX4938_PCFG_NDF_SEL | TX4938_PCFG_ATA_SEL);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_NAND
|
#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_NAND
|
||||||
printk(KERN_INFO "PIOSEL: enabling nand selection\n");
|
pr_info("PIOSEL: enabling NAND selection\n");
|
||||||
txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_NDF_SEL);
|
txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_NDF_SEL);
|
||||||
txx9_clear64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_ATA_SEL);
|
txx9_clear64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_ATA_SEL);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_ATA
|
#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_ATA
|
||||||
printk(KERN_INFO "PIOSEL: enabling ata selection\n");
|
pr_info("PIOSEL: enabling ATA selection\n");
|
||||||
txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_ATA_SEL);
|
txx9_set64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_ATA_SEL);
|
||||||
txx9_clear64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_NDF_SEL);
|
txx9_clear64(&tx4938_ccfgptr->pcfg, TX4938_PCFG_NDF_SEL);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_TOSHIBA_RBTX4938_MPLEX_KEEP
|
||||||
|
pcfg = ____raw_readq(&tx4938_ccfgptr->pcfg);
|
||||||
|
pr_info("PIOSEL: NAND %s, ATA %s\n",
|
||||||
|
(pcfg & TX4938_PCFG_NDF_SEL) ? "enabled" : "disabled",
|
||||||
|
(pcfg & TX4938_PCFG_ATA_SEL) ? "enabled" : "disabled");
|
||||||
|
#endif
|
||||||
|
|
||||||
rbtx4938_spi_setup();
|
rbtx4938_spi_setup();
|
||||||
pcfg = ____raw_readq(&tx4938_ccfgptr->pcfg); /* updated */
|
pcfg = ____raw_readq(&tx4938_ccfgptr->pcfg); /* updated */
|
||||||
/* fixup piosel */
|
/* fixup piosel */
|
||||||
|
|
Loading…
Add table
Reference in a new issue