diff options
author | Andy Yan <andy.yan@rock-chips.com> | 2017-08-11 11:39:13 +0800 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2017-08-12 16:39:47 +0200 |
commit | 0dbb9634e5355a27f4f25d0ceb3ed4ab2c8d17a5 (patch) | |
tree | f7717ff120e3af63467a98edcf62593cd89b2830 /drivers/i2c | |
parent | f14cb3e277f8fb87ef7e4bb1b81e53eafe3ec3ba (diff) | |
download | linux-0dbb9634e5355a27f4f25d0ceb3ed4ab2c8d17a5.tar.bz2 |
i2c: rk3x: add support for rv1108
Support for the i2c controller on rv1108 soc.
Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/busses/i2c-rk3x.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/i2c/busses/i2c-rk3x.c b/drivers/i2c/busses/i2c-rk3x.c index df220666d627..fe234578380a 100644 --- a/drivers/i2c/busses/i2c-rk3x.c +++ b/drivers/i2c/busses/i2c-rk3x.c @@ -1131,6 +1131,11 @@ static const struct i2c_algorithm rk3x_i2c_algorithm = { .functionality = rk3x_i2c_func, }; +static const struct rk3x_i2c_soc_data rv1108_soc_data = { + .grf_offset = -1, + .calc_timings = rk3x_i2c_v1_calc_timings, +}; + static const struct rk3x_i2c_soc_data rk3066_soc_data = { .grf_offset = 0x154, .calc_timings = rk3x_i2c_v0_calc_timings, @@ -1158,6 +1163,10 @@ static const struct rk3x_i2c_soc_data rk3399_soc_data = { static const struct of_device_id rk3x_i2c_match[] = { { + .compatible = "rockchip,rv1108-i2c", + .data = (void *)&rv1108_soc_data + }, + { .compatible = "rockchip,rk3066-i2c", .data = (void *)&rk3066_soc_data }, |