<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7651.59">
<TITLE>[PATCH] lite5200b: support wake from low-power mode</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->

<P><FONT SIZE=2>Puts SDRAM out of self-refresh and transfers control to<BR>
address saved at physical 0x0.<BR>
<BR>
Used by Linux patches posted at<BR>
<A HREF="http://ozlabs.org/pipermail/linuxppc-embedded/2007-March/026242.html">http://ozlabs.org/pipermail/linuxppc-embedded/2007-March/026242.html</A><BR>
<BR>
Index: u-boot-of.git/board/icecube/icecube.c<BR>
===================================================================<BR>
--- u-boot-of.git.orig/board/icecube/icecube.c<BR>
+++ u-boot-of.git/board/icecube/icecube.c<BR>
@@ -42,6 +42,54 @@<BR>
&nbsp;#include &quot;mt48lc16m16a2-75.h&quot;<BR>
&nbsp;# endif<BR>
&nbsp;#endif<BR>
+<BR>
+#ifdef CONFIG_LITE5200B<BR>
+/* u-boot part of low-power mode implementation */<BR>
+#define SAVED_ADDR (*(void **)0x00000000)<BR>
+#define PSC2_4 0x02<BR>
+<BR>
+void lite5200b_wakeup(void)<BR>
+{<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; unsigned char wakeup_pin;<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; void (*linux_wakeup)(void);<BR>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* check PSC2_4, if it's down &quot;QT&quot; is signaling we have a wakeup<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; * from low power mode */<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *(vu_char *)MPC5XXX_WU_GPIO_ENABLE = PSC2_4;<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; __asm__ volatile (&quot;sync&quot;);<BR>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wakeup_pin = *(vu_char *)MPC5XXX_WU_GPIO_DATA_I;<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (wakeup_pin &amp; PSC2_4)<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<BR>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* acknowledge to &quot;QT&quot;<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; * by holding pin at 1 for 10 uS */<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *(vu_char *)MPC5XXX_WU_GPIO_DIR = PSC2_4;<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; __asm__ volatile (&quot;sync&quot;);<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *(vu_char *)MPC5XXX_WU_GPIO_DATA = PSC2_4;<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; __asm__ volatile (&quot;sync&quot;);<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udelay(10);<BR>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* put ram out of self-refresh */<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *(vu_long *)MPC5XXX_SDRAM_CTRL |= 0x80000000;&nbsp;&nbsp; // mode_en<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; __asm__ volatile (&quot;sync&quot;);<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *(vu_long *)MPC5XXX_SDRAM_CTRL |= 0x50000000;&nbsp;&nbsp; // cke ref_en<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; __asm__ volatile (&quot;sync&quot;);<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *(vu_long *)MPC5XXX_SDRAM_CTRL &amp;= ~0x80000000;&nbsp; // !mode_en<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; __asm__ volatile (&quot;sync&quot;);<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udelay(10); /* wait a bit */<BR>
+<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* jump back to linux kernel code */<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; linux_wakeup = SAVED_ADDR;<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf(&quot;\n\nLooks like we just woke, transferring control to 0x%08lx\n&quot;,<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; linux_wakeup);<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; linux_wakeup();<BR>
+}<BR>
+#else<BR>
+#define lite5200b_wakeup()<BR>
+#endif<BR>
+<BR>
+<BR>
&nbsp;#ifndef CFG_RAMBOOT<BR>
&nbsp;static void sdram_start (int hi_addr)<BR>
&nbsp;{<BR>
@@ -208,6 +256,8 @@ long int initdram (int board_type)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; __asm__ volatile (&quot;sync&quot;);<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>
<BR>
+&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; lite5200b_wakeup();<BR>
+<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return dramsize + dramsize2;<BR>
&nbsp;}<BR>
<BR>
Index: u-boot-of.git/include/mpc5xxx.h<BR>
===================================================================<BR>
--- u-boot-of.git.orig/include/mpc5xxx.h<BR>
+++ u-boot-of.git/include/mpc5xxx.h<BR>
@@ -189,6 +189,7 @@<BR>
&nbsp;#define MPC5XXX_WU_GPIO_ODE&nbsp;&nbsp;&nbsp;&nbsp; (MPC5XXX_WU_GPIO + 0x0004)<BR>
&nbsp;#define MPC5XXX_WU_GPIO_DIR&nbsp;&nbsp;&nbsp;&nbsp; (MPC5XXX_WU_GPIO + 0x0008)<BR>
&nbsp;#define MPC5XXX_WU_GPIO_DATA&nbsp;&nbsp;&nbsp; (MPC5XXX_WU_GPIO + 0x000c)<BR>
+#define MPC5XXX_WU_GPIO_DATA_I&nbsp; (MPC5XXX_WU_GPIO + 0x0020)<BR>
<BR>
&nbsp;/* PCI registers */<BR>
&nbsp;#define MPC5XXX_PCI_CMD&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (MPC5XXX_PCI + 0x04)<BR>
<BR>
</FONT>
</P>

</BODY>
</HTML>