VAR-SOM-AM33 Linux SDK 7 Configurations: Difference between revisions

From Variscite Wiki
No edit summary
Line 10: Line 10:


= Change u-boot default Ethernet port to Gbit Ethernet =
= Change u-boot default Ethernet port to Gbit Ethernet =
Default ethernet port is defined in the below stuct in board/ti/var-som-am33/board.c
Default ethernet port is defined in the below struct in board/ti/var-som-am33/board.c
Changing the order of the definition of the port determines the default port, when the last defined port is the default.
Changing the order of the definition of the ports determines the default port, when the last defined port is the default.
<pre>
<pre>
static struct cpsw_slave_data cpsw_slaves[] = {
static struct cpsw_slave_data cpsw_slaves[] = {

Revision as of 10:16, 29 June 2014

VAR-SOM-AM33 SDK 7.0 typical configurations

LCD porting

Refer to:LCD porting

Installing Graphics SDK

Refer to: Installing Graphics SDK

Change u-boot default Ethernet port to Gbit Ethernet

Default ethernet port is defined in the below struct in board/ti/var-som-am33/board.c Changing the order of the definition of the ports determines the default port, when the last defined port is the default.

static struct cpsw_slave_data cpsw_slaves[] = {
	{
		.slave_reg_ofs	= 0x308,
		.sliver_reg_ofs	= 0xdc0,
		.phy_addr	= 7,
	},
	{
		.slave_reg_ofs	= 0x208, //Default u-boot port is 10/100 port
		.sliver_reg_ofs	= 0xd80,
		.phy_addr	= 0,
	},
}
;

Reference Documentation