فهرست منبع

sh: Fix heartbeart on Solution Engine series

Access size to LED is not added on Solution Engine series.
LED doesn't work. Fixed this problem.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Nobuhiro Iwamatsu 17 سال پیش
والد
کامیت
9c88b6ba1c
3فایلهای تغییر یافته به همراه17 افزوده شده و 0 حذف شده
  1. 1 0
      arch/sh/boards/se/770x/setup.c
  2. 8 0
      arch/sh/boards/se/7722/setup.c
  3. 8 0
      arch/sh/boards/se/7780/setup.c

+ 1 - 0
arch/sh/boards/se/770x/setup.c

@@ -94,6 +94,7 @@ static unsigned char heartbeat_bit_pos[] = { 8, 9, 10, 11, 12, 13, 14, 15 };
 static struct heartbeat_data heartbeat_data = {
 static struct heartbeat_data heartbeat_data = {
 	.bit_pos	= heartbeat_bit_pos,
 	.bit_pos	= heartbeat_bit_pos,
 	.nr_bits	= ARRAY_SIZE(heartbeat_bit_pos),
 	.nr_bits	= ARRAY_SIZE(heartbeat_bit_pos),
+	.regsize	= 16,
 };
 };
 
 
 static struct resource heartbeat_resources[] = {
 static struct resource heartbeat_resources[] = {

+ 8 - 0
arch/sh/boards/se/7722/setup.c

@@ -16,8 +16,13 @@
 #include <asm/machvec.h>
 #include <asm/machvec.h>
 #include <asm/se7722.h>
 #include <asm/se7722.h>
 #include <asm/io.h>
 #include <asm/io.h>
+#include <asm/heartbeat.h>
 
 
 /* Heartbeat */
 /* Heartbeat */
+static struct heartbeat_data heartbeat_data = {
+	.regsize = 16,
+};
+
 static struct resource heartbeat_resources[] = {
 static struct resource heartbeat_resources[] = {
 	[0] = {
 	[0] = {
 		.start  = PA_LED,
 		.start  = PA_LED,
@@ -29,6 +34,9 @@ static struct resource heartbeat_resources[] = {
 static struct platform_device heartbeat_device = {
 static struct platform_device heartbeat_device = {
 	.name           = "heartbeat",
 	.name           = "heartbeat",
 	.id             = -1,
 	.id             = -1,
+	.dev = {
+		.platform_data = &heartbeat_data,
+	},
 	.num_resources  = ARRAY_SIZE(heartbeat_resources),
 	.num_resources  = ARRAY_SIZE(heartbeat_resources),
 	.resource       = heartbeat_resources,
 	.resource       = heartbeat_resources,
 };
 };

+ 8 - 0
arch/sh/boards/se/7780/setup.c

@@ -14,8 +14,13 @@
 #include <asm/machvec.h>
 #include <asm/machvec.h>
 #include <asm/se7780.h>
 #include <asm/se7780.h>
 #include <asm/io.h>
 #include <asm/io.h>
+#include <asm/heartbeat.h>
 
 
 /* Heartbeat */
 /* Heartbeat */
+static struct heartbeat_data heartbeat_data = {
+	.regsize = 16,
+};
+
 static struct resource heartbeat_resources[] = {
 static struct resource heartbeat_resources[] = {
 	[0] = {
 	[0] = {
 		.start  = PA_LED,
 		.start  = PA_LED,
@@ -27,6 +32,9 @@ static struct resource heartbeat_resources[] = {
 static struct platform_device heartbeat_device = {
 static struct platform_device heartbeat_device = {
 	.name           = "heartbeat",
 	.name           = "heartbeat",
 	.id             = -1,
 	.id             = -1,
+	.dev = {
+		.platform_data = &heartbeat_data,
+	},
 	.num_resources  = ARRAY_SIZE(heartbeat_resources),
 	.num_resources  = ARRAY_SIZE(heartbeat_resources),
 	.resource       = heartbeat_resources,
 	.resource       = heartbeat_resources,
 };
 };