c0b4d6b528309576554c0afb04c2889febe67b99
[openwrt.git] / target / linux / ramips / patches-3.14 / 0004-MIPS-ralink-adds-a-bootrom-dumper-module.patch
1 From af03898c74172ab16d610f3eeaa65f66401eb7db Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Tue, 21 May 2013 15:50:31 +0200
4 Subject: [PATCH 04/57] MIPS: ralink: adds a bootrom dumper module
5
6 This patch adds a trivial driver that allows userland to extract the bootrom of
7 a SoC via debugfs.
8
9 Signed-off-by: John Crispin <blogic@openwrt.org>
10 ---
11  arch/mips/ralink/Makefile  |    2 ++
12  arch/mips/ralink/bootrom.c |   48 ++++++++++++++++++++++++++++++++++++++++++++
13  2 files changed, 50 insertions(+)
14  create mode 100644 arch/mips/ralink/bootrom.c
15
16 --- a/arch/mips/ralink/Makefile
17 +++ b/arch/mips/ralink/Makefile
18 @@ -17,4 +17,6 @@ obj-$(CONFIG_SOC_MT7620) += mt7620.o
19  
20  obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
21  
22 +obj-$(CONFIG_DEBUG_FS) += bootrom.o
23 +
24  obj-y += dts/
25 --- /dev/null
26 +++ b/arch/mips/ralink/bootrom.c
27 @@ -0,0 +1,48 @@
28 +/*
29 + * This program is free software; you can redistribute it and/or modify it
30 + * under the terms of the GNU General Public License version 2 as published
31 + * by the Free Software Foundation.
32 + *
33 + * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
34 + */
35 +
36 +#include <linux/debugfs.h>
37 +#include <linux/seq_file.h>
38 +
39 +#define BOOTROM_OFFSET 0x10118000
40 +#define BOOTROM_SIZE   0x8000
41 +
42 +static void __iomem *membase = (void __iomem*) KSEG1ADDR(BOOTROM_OFFSET);
43 +
44 +static int bootrom_show(struct seq_file *s, void *unused)
45 +{
46 +       seq_write(s, membase, BOOTROM_SIZE);
47 +
48 +       return 0;
49 +}
50 +
51 +static int bootrom_open(struct inode *inode, struct file *file)
52 +{
53 +       return single_open(file, bootrom_show, NULL);
54 +}
55 +
56 +static const struct file_operations bootrom_file_ops = {
57 +       .open           = bootrom_open,
58 +       .read           = seq_read,
59 +       .llseek         = seq_lseek,
60 +       .release        = single_release,
61 +};
62 +
63 +static int bootrom_setup(void)
64 +{
65 +       if (!debugfs_create_file("bootrom", 0444,
66 +                       NULL, NULL, &bootrom_file_ops)) {
67 +               pr_err("Failed to create bootrom debugfs file\n");
68 +
69 +               return -EINVAL;
70 +       }
71 +
72 +       return 0;
73 +}
74 +
75 +postcore_initcall(bootrom_setup);