diff options
Diffstat (limited to 'arch/arm/mach-omap2/gpmc-smsc911x.c')
-rw-r--r-- | arch/arm/mach-omap2/gpmc-smsc911x.c | 44 |
1 files changed, 19 insertions, 25 deletions
diff --git a/arch/arm/mach-omap2/gpmc-smsc911x.c b/arch/arm/mach-omap2/gpmc-smsc911x.c index 703f150dd01d..997033129d26 100644 --- a/arch/arm/mach-omap2/gpmc-smsc911x.c +++ b/arch/arm/mach-omap2/gpmc-smsc911x.c | |||
@@ -10,6 +10,7 @@ | |||
10 | * it under the terms of the GNU General Public License version 2 as | 10 | * it under the terms of the GNU General Public License version 2 as |
11 | * published by the Free Software Foundation. | 11 | * published by the Free Software Foundation. |
12 | */ | 12 | */ |
13 | #define pr_fmt(fmt) "%s: " fmt, __func__ | ||
13 | 14 | ||
14 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
15 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
@@ -30,7 +31,7 @@ static struct resource gpmc_smsc911x_resources[] = { | |||
30 | .flags = IORESOURCE_MEM, | 31 | .flags = IORESOURCE_MEM, |
31 | }, | 32 | }, |
32 | [1] = { | 33 | [1] = { |
33 | .flags = IORESOURCE_IRQ, | 34 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, |
34 | }, | 35 | }, |
35 | }; | 36 | }; |
36 | 37 | ||
@@ -41,16 +42,6 @@ static struct smsc911x_platform_config gpmc_smsc911x_config = { | |||
41 | .flags = SMSC911X_USE_16BIT, | 42 | .flags = SMSC911X_USE_16BIT, |
42 | }; | 43 | }; |
43 | 44 | ||
44 | static struct platform_device gpmc_smsc911x_device = { | ||
45 | .name = "smsc911x", | ||
46 | .id = -1, | ||
47 | .num_resources = ARRAY_SIZE(gpmc_smsc911x_resources), | ||
48 | .resource = gpmc_smsc911x_resources, | ||
49 | .dev = { | ||
50 | .platform_data = &gpmc_smsc911x_config, | ||
51 | }, | ||
52 | }; | ||
53 | |||
54 | /* | 45 | /* |
55 | * Initialize smsc911x device connected to the GPMC. Note that we | 46 | * Initialize smsc911x device connected to the GPMC. Note that we |
56 | * assume that pin multiplexing is done in the board-*.c file, | 47 | * assume that pin multiplexing is done in the board-*.c file, |
@@ -58,46 +49,49 @@ static struct platform_device gpmc_smsc911x_device = { | |||
58 | */ | 49 | */ |
59 | void __init gpmc_smsc911x_init(struct omap_smsc911x_platform_data *board_data) | 50 | void __init gpmc_smsc911x_init(struct omap_smsc911x_platform_data *board_data) |
60 | { | 51 | { |
52 | struct platform_device *pdev; | ||
61 | unsigned long cs_mem_base; | 53 | unsigned long cs_mem_base; |
62 | int ret; | 54 | int ret; |
63 | 55 | ||
64 | gpmc_cfg = board_data; | 56 | gpmc_cfg = board_data; |
65 | 57 | ||
66 | if (gpmc_cs_request(gpmc_cfg->cs, SZ_16M, &cs_mem_base) < 0) { | 58 | if (gpmc_cs_request(gpmc_cfg->cs, SZ_16M, &cs_mem_base) < 0) { |
67 | printk(KERN_ERR "Failed to request GPMC mem for smsc911x\n"); | 59 | pr_err("Failed to request GPMC mem region\n"); |
68 | return; | 60 | return; |
69 | } | 61 | } |
70 | 62 | ||
71 | gpmc_smsc911x_resources[0].start = cs_mem_base + 0x0; | 63 | gpmc_smsc911x_resources[0].start = cs_mem_base + 0x0; |
72 | gpmc_smsc911x_resources[0].end = cs_mem_base + 0xff; | 64 | gpmc_smsc911x_resources[0].end = cs_mem_base + 0xff; |
73 | 65 | ||
74 | if (gpio_request(gpmc_cfg->gpio_irq, "smsc911x irq") < 0) { | 66 | if (gpio_request_one(gpmc_cfg->gpio_irq, GPIOF_IN, "smsc911x irq")) { |
75 | printk(KERN_ERR "Failed to request GPIO%d for smsc911x IRQ\n", | 67 | pr_err("Failed to request IRQ GPIO%d\n", gpmc_cfg->gpio_irq); |
76 | gpmc_cfg->gpio_irq); | ||
77 | goto free1; | 68 | goto free1; |
78 | } | 69 | } |
79 | 70 | ||
80 | gpio_direction_input(gpmc_cfg->gpio_irq); | ||
81 | gpmc_smsc911x_resources[1].start = gpio_to_irq(gpmc_cfg->gpio_irq); | 71 | gpmc_smsc911x_resources[1].start = gpio_to_irq(gpmc_cfg->gpio_irq); |
82 | gpmc_smsc911x_resources[1].flags |= | ||
83 | (gpmc_cfg->flags & IRQF_TRIGGER_MASK); | ||
84 | 72 | ||
85 | if (gpio_is_valid(gpmc_cfg->gpio_reset)) { | 73 | if (gpio_is_valid(gpmc_cfg->gpio_reset)) { |
86 | ret = gpio_request(gpmc_cfg->gpio_reset, "smsc911x reset"); | 74 | ret = gpio_request_one(gpmc_cfg->gpio_reset, |
75 | GPIOF_OUT_INIT_HIGH, "smsc911x reset"); | ||
87 | if (ret) { | 76 | if (ret) { |
88 | printk(KERN_ERR "Failed to request GPIO%d for smsc911x reset\n", | 77 | pr_err("Failed to request reset GPIO%d\n", |
89 | gpmc_cfg->gpio_reset); | 78 | gpmc_cfg->gpio_reset); |
90 | goto free2; | 79 | goto free2; |
91 | } | 80 | } |
92 | 81 | ||
93 | gpio_direction_output(gpmc_cfg->gpio_reset, 1); | ||
94 | gpio_set_value(gpmc_cfg->gpio_reset, 0); | 82 | gpio_set_value(gpmc_cfg->gpio_reset, 0); |
95 | msleep(100); | 83 | msleep(100); |
96 | gpio_set_value(gpmc_cfg->gpio_reset, 1); | 84 | gpio_set_value(gpmc_cfg->gpio_reset, 1); |
97 | } | 85 | } |
98 | 86 | ||
99 | if (platform_device_register(&gpmc_smsc911x_device) < 0) { | 87 | if (gpmc_cfg->flags) |
100 | printk(KERN_ERR "Unable to register smsc911x device\n"); | 88 | gpmc_smsc911x_config.flags = gpmc_cfg->flags; |
89 | |||
90 | pdev = platform_device_register_resndata(NULL, "smsc911x", gpmc_cfg->id, | ||
91 | gpmc_smsc911x_resources, ARRAY_SIZE(gpmc_smsc911x_resources), | ||
92 | &gpmc_smsc911x_config, sizeof(gpmc_smsc911x_config)); | ||
93 | if (!pdev) { | ||
94 | pr_err("Unable to register platform device\n"); | ||
101 | gpio_free(gpmc_cfg->gpio_reset); | 95 | gpio_free(gpmc_cfg->gpio_reset); |
102 | goto free2; | 96 | goto free2; |
103 | } | 97 | } |
@@ -109,5 +103,5 @@ free2: | |||
109 | free1: | 103 | free1: |
110 | gpmc_cs_free(gpmc_cfg->cs); | 104 | gpmc_cs_free(gpmc_cfg->cs); |
111 | 105 | ||
112 | printk(KERN_ERR "Could not initialize smsc911x\n"); | 106 | pr_err("Could not initialize smsc911x device\n"); |
113 | } | 107 | } |