<feed xmlns='http://www.w3.org/2005/Atom'>
<title>u-boot.git/common/Makefile, branch v1.3.3-rc2</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<id>http://cgit.235523.xyz/u-boot.git/atom/common/Makefile?h=v1.3.3-rc2</id>
<link rel='self' href='http://cgit.235523.xyz/u-boot.git/atom/common/Makefile?h=v1.3.3-rc2'/>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/'/>
<updated>2008-04-13T21:52:48Z</updated>
<entry>
<title>Altera Stratix II support</title>
<updated>2008-04-13T21:52:48Z</updated>
<author>
<name>eran liberty</name>
<email>eran.liberty@gmail.com</email>
</author>
<published>2008-03-26T23:50:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=3c735e7437150e8615f26930c7819db85634276d'/>
<id>urn:sha1:3c735e7437150e8615f26930c7819db85634276d</id>
<content type='text'>
Adds Support for Altera's Stratix II.

Within your board specific init file you will have to call

1. fpga_init (/* relocated code offset. usually =&gt; */ gd-&gt;reloc_off);
2. fpga_add (fpga_altera, (Altera_desc*)&amp;altera_desc);

Altera_desc* contines (for example):
	{
	 Altera_StratixII,	/* part type */
	 passive_serial,	/* interface type */
	 1,			/* bytes of data part can accept */
	 (void *)(&amp;funcs),	/* interface function table */
	 0L,			/* base interface address */
	 0			/* implementation specific cookie */
	 }

funcs is the interface. It is of type altera_board_specific_func.
It looks like this:
altera_board_specific_func func = {
	pre_fn,
	config_fn,
	status_fn,
	done_fn,
	clk_fn,
	data_fn,
	abort_fn,
	post_fn,
};

you will have to implement these functions, which is usually bit
banging some gpio.

Signed-off-by: Eran Liberty &lt;liberty@extricom.com&gt;
</content>
</entry>
<entry>
<title>SPARC/LEON3: Added AMBA Bus Plug&amp;Play information print command (ambapp). It can print available cores (type: AHB Master, AHB Slave, APB Slave), their address ranges, IRQ number and version.</title>
<updated>2008-04-08T07:58:32Z</updated>
<author>
<name>Daniel Hellstrom</name>
<email>daniel@gaisler.com</email>
</author>
<published>2008-03-26T22:00:38Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a'/>
<id>urn:sha1:2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a</id>
<content type='text'>
Signed-off-by: Daniel Hellstrom &lt;daniel@gaisler.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'master' of git://www.denx.de/git/u-boot-mpc85xx</title>
<updated>2008-03-26T23:16:34Z</updated>
<author>
<name>Wolfgang Denk</name>
<email>wd@denx.de</email>
</author>
<published>2008-03-26T23:16:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=38b189fe749824ea9b1c5422865e78b4b7eb2494'/>
<id>urn:sha1:38b189fe749824ea9b1c5422865e78b4b7eb2494</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ata: add the support for SATA framework</title>
<updated>2008-03-26T22:38:51Z</updated>
<author>
<name>Dave Liu</name>
<email>r63238@freescale.com</email>
</author>
<published>2008-03-26T14:49:44Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=c7057b529c3c3cb9c0ac9060686a4068f1491bbe'/>
<id>urn:sha1:c7057b529c3c3cb9c0ac9060686a4068f1491bbe</id>
<content type='text'>
- add the SATA framework
- add the SATA command line

Signed-off-by: Dave Liu &lt;daveliu@freescale.com&gt;
</content>
</entry>
<entry>
<title>ata: merge the ata_piix driver</title>
<updated>2008-03-26T22:38:48Z</updated>
<author>
<name>Dave Liu</name>
<email>r63238@freescale.com</email>
</author>
<published>2008-03-26T14:47:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=9eef62804d9695425b24c87b46a61a7fa74afee0'/>
<id>urn:sha1:9eef62804d9695425b24c87b46a61a7fa74afee0</id>
<content type='text'>
move the cmd_sata.c from common/ to drivers/ata_piix.c,
the cmd_sata.c have some part of ata_piix controller drivers.
consolidate the driver to have better framework.

Signed-off-by: Dave Liu &lt;daveliu@freescale.com&gt;
</content>
</entry>
<entry>
<title>85xx: Added support for multicore boot mechanism</title>
<updated>2008-03-26T16:43:03Z</updated>
<author>
<name>Kumar Gala</name>
<email>galak@kernel.crashing.org</email>
</author>
<published>2008-01-17T22:48:33Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=ec2b74ffd36f02c6123725e7c2533dd2deaf4b64'/>
<id>urn:sha1:ec2b74ffd36f02c6123725e7c2533dd2deaf4b64</id>
<content type='text'>
Added the cpu command that provides a generic mechanism to get status,
reset, and release secondary cores in multicore processors.

Added support for using the ePAPR defined spin-table mechanism on 85xx.

Signed-off-by: Kumar Gala &lt;galak@kernel.crashing.org&gt;
</content>
</entry>
<entry>
<title>Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing</title>
<updated>2008-03-26T08:38:06Z</updated>
<author>
<name>Bartlomiej Sieka</name>
<email>tur@semihalf.com</email>
</author>
<published>2008-03-26T08:38:06Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=27f33e9f45ef7f9685cbdc65066a1828e85dde4f'/>
<id>urn:sha1:27f33e9f45ef7f9685cbdc65066a1828e85dde4f</id>
<content type='text'>
Conflicts:

	common/cmd_bootm.c
	cpu/mpc8xx/cpu.c

Signed-off-by: Bartlomiej Sieka &lt;tur@semihalf.com&gt;
</content>
</entry>
<entry>
<title>Add setexpr command</title>
<updated>2008-03-25T21:16:15Z</updated>
<author>
<name>Kumar Gala</name>
<email>galak@kernel.crashing.org</email>
</author>
<published>2008-02-15T02:44:42Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=d058698fd2d9f769ff38ac53c8708b3fdd314f2d'/>
<id>urn:sha1:d058698fd2d9f769ff38ac53c8708b3fdd314f2d</id>
<content type='text'>
Add a simple expr style command that will set an env variable as the result
of the command.  This allows us to do simple math in shell.  The following
operations are supported: &amp;, |, ^, +, -, *, /.

Signed-off-by: Kumar Gala &lt;galak@kernel.crashing.org&gt;
</content>
</entry>
<entry>
<title>Blackfin: new cplbinfo command for viewing cplb tables</title>
<updated>2008-03-16T02:14:54Z</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2008-02-19T05:35:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf'/>
<id>urn:sha1:cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf</id>
<content type='text'>
Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
</entry>
<entry>
<title>Blackfin: move bootldr command to common code</title>
<updated>2008-03-16T02:13:58Z</updated>
<author>
<name>Mike Frysinger</name>
<email>vapier@gentoo.org</email>
</author>
<published>2008-02-16T12:40:36Z</published>
<link rel='alternate' type='text/html' href='http://cgit.235523.xyz/u-boot.git/commit/?id=86a20fb920bd198105acf7b1191117f566d637ed'/>
<id>urn:sha1:86a20fb920bd198105acf7b1191117f566d637ed</id>
<content type='text'>
This moves the Blackfin-common bootldr command out of the BF537-STAMP
specific board directory and into the common directory so that all Blackfin
boards may utilize it.

Signed-off-by: Mike Frysinger &lt;vapier@gentoo.org&gt;
</content>
</entry>
</feed>
