public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Ramoops: use the platform data structure instead of module params
@ 2010-08-18  8:33 Kyungmin Park
  2010-08-23  6:48 ` Marco Stornelli
  0 siblings, 1 reply; 3+ messages in thread
From: Kyungmin Park @ 2010-08-18  8:33 UTC (permalink / raw)
  To: linux-kernel, Marco Stornelli; +Cc: Andrew Morton

From: Kyungmin Park <kyungmin.park@samsung.com>

As each board and system has different memory for ramoops. It's better to define the platform data instead of module params.

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
diff --git a/drivers/char/ramoops.c b/drivers/char/ramoops.c
index 74f00b5..eb7faba 100644
--- a/drivers/char/ramoops.c
+++ b/drivers/char/ramoops.c
@@ -25,6 +25,8 @@
 #include <linux/time.h>
 #include <linux/io.h>
 #include <linux/ioport.h>
+#include <linux/platform_device.h>
+#include <linux/ramoops.h>
 
 #define RAMOOPS_KERNMSG_HDR "===="
 #define RAMOOPS_HEADER_SIZE   (5 + sizeof(struct timeval))
@@ -91,11 +93,17 @@ static void ramoops_do_dump(struct kmsg_dumper *dumper,
 	cxt->count = (cxt->count + 1) % cxt->max_count;
 }
 
-static int __init ramoops_init(void)
+static int __init ramoops_probe(struct platform_device *pdev)
 {
+	struct ramoops_platform_data *pdata = pdev->dev.platform_data;
 	struct ramoops_context *cxt = &oops_cxt;
 	int err = -EINVAL;
 
+	if (pdata) {
+		mem_size = pdata->mem_size;
+		mem_address = pdata->mem_address;
+	}
+
 	if (!mem_size) {
 		printk(KERN_ERR "ramoops: invalid size specification");
 		goto fail3;
@@ -142,7 +150,7 @@ fail3:
 	return err;
 }
 
-static void __exit ramoops_exit(void)
+static void __exit ramoops_remove(void)
 {
 	struct ramoops_context *cxt = &oops_cxt;
 
@@ -153,6 +161,23 @@ static void __exit ramoops_exit(void)
 	release_mem_region(cxt->phys_addr, cxt->size);
 }
 
+static struct platform_driver ramoops_driver = {
+	.remove		= __exit_p(ramoops_remove),
+	.driver		= {
+		.name	= "ramoops",
+		.owner	= THIS_MODULE,
+	},
+};
+
+static int __init ramoops_init(void)
+{
+	return platform_driver_probe(&ramoops_driver, ramoops_probe);
+}
+
+static void __exit ramoops_exit(void)
+{
+	platform_driver_unregister(&ramoops_driver);
+}
 
 module_init(ramoops_init);
 module_exit(ramoops_exit);
diff --git a/include/linux/ramoops.h b/include/linux/ramoops.h
new file mode 100644
index 0000000..0ae68a2
--- /dev/null
+++ b/include/linux/ramoops.h
@@ -0,0 +1,15 @@
+#ifndef __RAMOOPS_H
+#define __RAMOOPS_H
+
+/*
+ * Ramoops platform data
+ * @mem_size	memory size for ramoops
+ * @mem_address	physical memory address to contain ramoops
+ */
+
+struct ramoops_platform_data {
+	unsigned long	mem_size;
+	unsigned long	mem_address;
+};
+
+#endif

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Ramoops: use the platform data structure instead of module params
  2010-08-18  8:33 [PATCH] Ramoops: use the platform data structure instead of module params Kyungmin Park
@ 2010-08-23  6:48 ` Marco Stornelli
  2010-08-23  6:53   ` Kyungmin Park
  0 siblings, 1 reply; 3+ messages in thread
From: Marco Stornelli @ 2010-08-23  6:48 UTC (permalink / raw)
  To: Kyungmin Park; +Cc: linux-kernel, Andrew Morton

2010/8/18 Kyungmin Park <kmpark@infradead.org>:
> From: Kyungmin Park <kyungmin.park@samsung.com>
>
> As each board and system has different memory for ramoops. It's better to define the platform data instead of module params.
>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---

It seems good. Currently there isn't any code that register a ramoops
device, isn't it?

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Ramoops: use the platform data structure instead of module params
  2010-08-23  6:48 ` Marco Stornelli
@ 2010-08-23  6:53   ` Kyungmin Park
  0 siblings, 0 replies; 3+ messages in thread
From: Kyungmin Park @ 2010-08-23  6:53 UTC (permalink / raw)
  To: Marco Stornelli; +Cc: linux-kernel, Andrew Morton

On Mon, Aug 23, 2010 at 3:48 PM, Marco Stornelli
<marco.stornelli@gmail.com> wrote:
> 2010/8/18 Kyungmin Park <kmpark@infradead.org>:
>> From: Kyungmin Park <kyungmin.park@samsung.com>
>>
>> As each board and system has different memory for ramoops. It's better to define the platform data instead of module params.
>>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>
> It seems good. Currently there isn't any code that register a ramoops
> device, isn't it?

At this time

I wrote it below

static struct ramoops_platform_data goni_ramoops_data = {
        .mem_size               = SZ_16K,
        .mem_address            = 0xED000000,   /* MODEM SRAM */
};

static struct platform_device goni_ramoops = {
        .name = "ramoops",
        .dev = {
                .platform_data = &goni_ramoops_data,
        },
};

Thank you,
Kyungmin Park

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-08-23  6:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-18  8:33 [PATCH] Ramoops: use the platform data structure instead of module params Kyungmin Park
2010-08-23  6:48 ` Marco Stornelli
2010-08-23  6:53   ` Kyungmin Park

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox