<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/board/ti, branch v2012.04</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/board/ti?h=v2012.04</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/board/ti?h=v2012.04'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2012-04-16T12:47:58Z</updated>
<entry>
<title>BeagleBoard: Remove userbutton command and use gpio command instead</title>
<updated>2012-04-16T12:47:58Z</updated>
<author>
<name>Joel Fernandes</name>
<email>agnel.joel@gmail.com</email>
</author>
<published>2011-09-11T08:37:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=aae58b954b527882fde35bd718b9f865b18eda46'/>
<id>urn:sha1:aae58b954b527882fde35bd718b9f865b18eda46</id>
<content type='text'>
Remove userbutton command and do the detection in board config file using the gpio command

Signed-off-by: Joel A Fernandes &lt;agnel.joel@gmail.com&gt;
Signed-off-by: Jason Kridner &lt;jkridner@beagleboard.org&gt;
</content>
</entry>
<entry>
<title>OMAP: Remove omap1610inn-based boards</title>
<updated>2012-03-29T06:19:29Z</updated>
<author>
<name>Tom Rini</name>
<email>trini@ti.com</email>
</author>
<published>2012-03-28T06:26:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=76e2c169a525159d48dd005a371fb05e1943c64b'/>
<id>urn:sha1:76e2c169a525159d48dd005a371fb05e1943c64b</id>
<content type='text'>
The CS_AUTOBOOT configurations have been broken for a long time.
Kshitij Gupta is no longer at TI making these broken and orphaned
boards, so remove.

Signed-off-by: Tom Rini &lt;trini@ti.com&gt;
</content>
</entry>
<entry>
<title>board/ti/beagle/beagle.c: Fix build warnings</title>
<updated>2012-03-29T06:19:29Z</updated>
<author>
<name>Anatolij Gustschin</name>
<email>agust@denx.de</email>
</author>
<published>2012-03-27T23:05:07Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3fbc6931a456b89294b5807e08df21b1a1387846'/>
<id>urn:sha1:3fbc6931a456b89294b5807e08df21b1a1387846</id>
<content type='text'>
Fix:
beagle.c:257:13: warning: function declaration isn't a prototype
[-Wstrict-prototypes]
beagle.c:257:13: warning: function declaration isn't a prototype
[-Wstrict-prototypes]

Also make beagle_dvi_pup() checkpatch clean, fix:
ERROR: open brace '{' following function declarations go on the
next line

Signed-off-by: Anatolij Gustschin &lt;agust@denx.de&gt;
Cc: Tom Rini &lt;trini@ti.com&gt;
</content>
</entry>
<entry>
<title>bootstage: Make use of BOOTSTAGE_ID_RUN_OS in show_boot_progress()</title>
<updated>2012-03-18T19:45:57Z</updated>
<author>
<name>Simon Glass</name>
<email>sjg@chromium.org</email>
</author>
<published>2011-12-10T11:07:54Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=578ac1e9ba4c79175e69becb28e7157a84eff241'/>
<id>urn:sha1:578ac1e9ba4c79175e69becb28e7157a84eff241</id>
<content type='text'>
This changes the number 15 as used in boot_stage_progress() to use the
new name provided for it. This is a separate patch because it touches
so many files.

Signed-off-by: Simon Glass &lt;sjg@chromium.org&gt;
Acked-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
</entry>
<entry>
<title>beagle: enable DVI_PUP</title>
<updated>2012-02-27T20:19:24Z</updated>
<author>
<name>Peter Meerwald</name>
<email>p.meerwald@bct-electronic.com</email>
</author>
<published>2012-02-08T05:24:26Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=4258aa62fbf4e001314624d09bcc94b3027c5670'/>
<id>urn:sha1:4258aa62fbf4e001314624d09bcc94b3027c5670</id>
<content type='text'>
this patch addresses the issue that there is no DVI output on beagleboard-xm in
u-boot; the TFP410 is not powered on, DVI_PUP needs to be set high

this is done differently on beagleboard-xm rev. B/C versus earlier boards:
beagleboard-xm B/C need to set GPIO2 of the TWL4030
earlier boards need to set GPIO170

note that the change occured somewhere inbetween beagleboard-xm rev. A2 and A3

note that beagleboard-xm rev. A and rev. B cannot be distinguished using
get_board_revision(), REVISION_XM_A/REVISION_XM_B is bogus

due to this glitch, the patch cannot work correctly on some beagleboard-xm
rev A/B boards

tested on beagleboard-xm rev. C (you should see orange color on a monitor)

note that the framebuffer is NOT yet set up, this could be done along the
lines below (for 800x480 resolution and RGB24) before calling omap3_dss_enable()

static void configure_frame_buffer() {
	writel(0x80500000, (uint *) 0x48050480); // address
	writel(0x80500000, (uint *) 0x48050484);
	writel(0x01df031f, (uint *) 0x4805048c); // size
	writel(0x00000091, (uint *) 0x480504a0); // RGB24
}

Signed-off-by: Peter Meerwald &lt;p.meerwald@bct-electronic.com&gt;
</content>
</entry>
<entry>
<title>beagle: fix typos</title>
<updated>2012-02-12T09:11:32Z</updated>
<author>
<name>Peter Meerwald</name>
<email>p.meerwald@bct-electronic.com</email>
</author>
<published>2012-02-02T12:51:01Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=66327eb359205c191a3c3b3f55bb52709d52d37c'/>
<id>urn:sha1:66327eb359205c191a3c3b3f55bb52709d52d37c</id>
<content type='text'>
Signed-off-by: Peter Meerwald &lt;p.meerwald@bct-electronic.com&gt;
</content>
</entry>
<entry>
<title>OMAP4: ehci-omap: enable ehci-omap for panda boards</title>
<updated>2012-02-12T09:11:31Z</updated>
<author>
<name>Govindraj.R</name>
<email>govindraj.raja@ti.com</email>
</author>
<published>2012-02-06T03:55:37Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=49be71c475d519813015443dd391adf6e8ecba3a'/>
<id>urn:sha1:49be71c475d519813015443dd391adf6e8ecba3a</id>
<content type='text'>
For panda initialise the mux pins for ehci usage and
enable ehci in omap4_panda config file.

Signed-off-by: Govindraj.R &lt;govindraj.raja@ti.com&gt;
Tested-by: Stefano Babic &lt;sbabic@denx.de&gt;
</content>
</entry>
<entry>
<title>ehci-omap: Clean up added ehci-omap.c</title>
<updated>2012-02-12T09:11:31Z</updated>
<author>
<name>Govindraj.R</name>
<email>govindraj.raja@ti.com</email>
</author>
<published>2012-02-06T03:55:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=43b62393da6dfdd7f503d1b37344463a05ea47b5'/>
<id>urn:sha1:43b62393da6dfdd7f503d1b37344463a05ea47b5</id>
<content type='text'>
Clean up added ehci-omap.c and make it generic for re-use across
omap-soc having same ehci ip block. Also pass the modes to be configured
from board file and configure the ports accordingly. All usb layers
are not cache aligned, till then keep cache off for usb ops as ehci will use
internally dma for all usb ops.

* Add a generic common header ehci-omap.h having common ip block
  data and reg shifts.
* Rename and modify ehci-omap3 to ehci.h retain only conflicting
  sysc reg shifts remove others and move to common header file.
* pass the board data for beagle/panda accordinly to use
  ehci ports.

Acked-by: Igor Grinberg &lt;grinberg@compulab.co.il&gt;
Signed-off-by: Govindraj.R &lt;govindraj.raja@ti.com&gt;
</content>
</entry>
<entry>
<title>ehci-omap: driver for EHCI host on OMAP3</title>
<updated>2012-02-12T09:11:30Z</updated>
<author>
<name>Ilya Yanok</name>
<email>yanok@emcraft.com</email>
</author>
<published>2012-02-06T03:55:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=29321c0518d99494ab2a250e5b4f75b3add83b11'/>
<id>urn:sha1:29321c0518d99494ab2a250e5b4f75b3add83b11</id>
<content type='text'>
Taken from Beagle code. Tested on mcx board (AM3517-based).

Signed-off-by: Ilya Yanok &lt;yanok@emcraft.com&gt;
Tested-by: Stefano Babic &lt;sbabic@denx.de&gt;
</content>
</entry>
<entry>
<title>Beagleboard: Correct memory size on rev C4</title>
<updated>2012-02-12T09:11:23Z</updated>
<author>
<name>robertcnelson@gmail.com</name>
<email>robertcnelson@gmail.com</email>
</author>
<published>2012-01-27T07:09:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=223b8aa42c0f4bf9b4a7a71c16d0f67b5faf5045'/>
<id>urn:sha1:223b8aa42c0f4bf9b4a7a71c16d0f67b5faf5045</id>
<content type='text'>
The logic for the rev C4 boards was missing one of the cases
(variant with Micron NAND and 2x128MB).

Signed-off-by: Robert Nelson &lt;robertcnelson@gmail.com&gt;
</content>
</entry>
</feed>
