From: Lars Poeschel Date: Mon, 30 Sep 2013 07:51:34 +0000 (+0200) Subject: pcm051/igep0033: Supply bd_ram_ofs for cpsw driver X-Git-Tag: v2013.10~26^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6478cde618ad3bfdb9b62f62e8c76498b0d6637f;p=platform%2Fkernel%2Fu-boot.git pcm051/igep0033: Supply bd_ram_ofs for cpsw driver Since 2bf36ac638ab2db9f0295aa47064976eeebf80c1 the BD ram address is not hardcoded inside cpsw driver any more. Platforms have to supply their bd_ram_ofs in the platform data to the driver. This commit does this for pcm051 and igep0033 boards. Tested-by: Enric Balletbo i Serra Acked-by: Mugunthan V N Signed-off-by: Lars Poeschel --- diff --git a/board/isee/igep0033/board.c b/board/isee/igep0033/board.c index a9c34c6..347c128 100644 --- a/board/isee/igep0033/board.c +++ b/board/isee/igep0033/board.c @@ -129,6 +129,7 @@ static struct cpsw_platform_data cpsw_data = { .ale_entries = 1024, .host_port_reg_ofs = 0x108, .hw_stats_reg_ofs = 0x900, + .bd_ram_ofs = 0x2000, .mac_control = (1 << 5), .control = cpsw_control, .host_port_num = 0, diff --git a/board/phytec/pcm051/board.c b/board/phytec/pcm051/board.c index e40b0bd..dafb1eb 100644 --- a/board/phytec/pcm051/board.c +++ b/board/phytec/pcm051/board.c @@ -150,6 +150,7 @@ static struct cpsw_platform_data cpsw_data = { .ale_entries = 1024, .host_port_reg_ofs = 0x108, .hw_stats_reg_ofs = 0x900, + .bd_ram_ofs = 0x2000, .mac_control = (1 << 5), .control = cpsw_control, .host_port_num = 0,