ARM: OMAP: Make plat-omap/i2c.c port checks local
[firefly-linux-kernel-4.4.55.git] / arch / arm / plat-omap / i2c.c
1 /*
2  * linux/arch/arm/plat-omap/i2c.c
3  *
4  * Helper module for board specific I2C bus registration
5  *
6  * Copyright (C) 2007 Nokia Corporation.
7  *
8  * Contact: Jarkko Nikula <jhnikula@gmail.com>
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * version 2 as published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23  *
24  */
25
26 #include <linux/kernel.h>
27 #include <linux/platform_device.h>
28 #include <linux/i2c.h>
29 #include <linux/i2c-omap.h>
30 #include <linux/slab.h>
31 #include <linux/err.h>
32 #include <linux/clk.h>
33
34 #include <mach/irqs.h>
35
36 #include "i2c.h"
37
38 #define OMAP_I2C_MAX_CONTROLLERS 4
39 static struct omap_i2c_bus_platform_data i2c_pdata[OMAP_I2C_MAX_CONTROLLERS];
40
41 #define OMAP_I2C_CMDLINE_SETUP  (BIT(31))
42
43 /**
44  * omap_i2c_bus_setup - Process command line options for the I2C bus speed
45  * @str: String of options
46  *
47  * This function allow to override the default I2C bus speed for given I2C
48  * bus with a command line option.
49  *
50  * Format: i2c_bus=bus_id,clkrate (in kHz)
51  *
52  * Returns 1 on success, 0 otherwise.
53  */
54 static int __init omap_i2c_bus_setup(char *str)
55 {
56         int ints[3];
57
58         get_options(str, 3, ints);
59         if (ints[0] < 2 || ints[1] < 1 ||
60                         ints[1] > OMAP_I2C_MAX_CONTROLLERS)
61                 return 0;
62         i2c_pdata[ints[1] - 1].clkrate = ints[2];
63         i2c_pdata[ints[1] - 1].clkrate |= OMAP_I2C_CMDLINE_SETUP;
64
65         return 1;
66 }
67 __setup("i2c_bus=", omap_i2c_bus_setup);
68
69 /*
70  * Register busses defined in command line but that are not registered with
71  * omap_register_i2c_bus from board initialization code.
72  */
73 static int __init omap_register_i2c_bus_cmdline(void)
74 {
75         int i, err = 0;
76
77         for (i = 0; i < ARRAY_SIZE(i2c_pdata); i++)
78                 if (i2c_pdata[i].clkrate & OMAP_I2C_CMDLINE_SETUP) {
79                         i2c_pdata[i].clkrate &= ~OMAP_I2C_CMDLINE_SETUP;
80                         err = omap_i2c_add_bus(&i2c_pdata[i], i + 1);
81                         if (err)
82                                 goto out;
83                 }
84
85 out:
86         return err;
87 }
88 subsys_initcall(omap_register_i2c_bus_cmdline);
89
90 /**
91  * omap_register_i2c_bus - register I2C bus with device descriptors
92  * @bus_id: bus id counting from number 1
93  * @clkrate: clock rate of the bus in kHz
94  * @info: pointer into I2C device descriptor table or NULL
95  * @len: number of descriptors in the table
96  *
97  * Returns 0 on success or an error code.
98  */
99 int __init omap_register_i2c_bus(int bus_id, u32 clkrate,
100                           struct i2c_board_info const *info,
101                           unsigned len)
102 {
103         int err;
104
105         BUG_ON(bus_id < 1 || bus_id > OMAP_I2C_MAX_CONTROLLERS);
106
107         if (info) {
108                 err = i2c_register_board_info(bus_id, info, len);
109                 if (err)
110                         return err;
111         }
112
113         if (!i2c_pdata[bus_id - 1].clkrate)
114                 i2c_pdata[bus_id - 1].clkrate = clkrate;
115
116         i2c_pdata[bus_id - 1].clkrate &= ~OMAP_I2C_CMDLINE_SETUP;
117
118         return omap_i2c_add_bus(&i2c_pdata[bus_id - 1], bus_id);
119 }