Skip to content

Commit

Permalink
sh: sh7785lcr: Updates for fixed PMB.
Browse files Browse the repository at this point in the history
Add a new defconfig for SH7785LCR in 32-bit mode, and update the power
off code to avoid 29-bit assumptions.

Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Yoshihiro Shimoda authored and Paul Mundt committed Mar 10, 2009
1 parent 2f47f44 commit df4d4f1
Show file tree
Hide file tree
Showing 3 changed files with 1,563 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/sh/boards/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ config SH_SH7785LCR

config SH_SH7785LCR_29BIT_PHYSMAPS
bool "SH7785LCR 29bit physmaps"
depends on SH_SH7785LCR
depends on SH_SH7785LCR && 29BIT
default y
help
This board has 2 physical memory maps. It can be changed with
Expand Down
10 changes: 9 additions & 1 deletion arch/sh/boards/board-sh7785lcr.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,15 @@ void __init init_sh7785lcr_IRQ(void)

static void sh7785lcr_power_off(void)
{
ctrl_outb(0x01, P2SEGADDR(PLD_POFCR));
unsigned char *p;

p = ioremap(PLD_POFCR, PLD_POFCR + 1);
if (!p) {
printk(KERN_ERR "%s: ioremap error.\n", __func__);
return;
}
*p = 0x01;
iounmap(p);
}

/* Initialize the board */
Expand Down
Loading

0 comments on commit df4d4f1

Please sign in to comment.