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

From Variscite Wiki
No edit summary
Line 4: Line 4:
= LCD porting  =
= LCD porting  =


*[[VAR-SOM-AM33 Linux SDK 7 LCD porting|LCD porting]]
Refer to:[[VAR-SOM-AM33 Linux SDK 7 LCD porting|LCD porting]]


= Installing Graphics SDK  =
= Installing Graphics SDK  =
*[[VAR-SOM-AM33 Linux SDK 7 installing graphics SDK|Installing Graphics SDK]]
Refer to: [[VAR-SOM-AM33 Linux SDK 7 installing graphics SDK|Installing Graphics SDK]]
 
= 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
Changing the order of the definition of the port determines the default port, when the last defined port is the default.
<pre>
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,
},
}
;
</pre>


= Reference Documentation  =
= Reference Documentation  =

Revision as of 10:15, 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 stuct 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.

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