Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1254482

[PATCH v2 0/2] i2c: uniphier: add two I2C controller drivers for UniPhier SoC platform

From Masahiro Yamada <yamada.masahiro@socionext.com>
Newsgroups linux.kernel
Subject [PATCH v2 0/2] i2c: uniphier: add two I2C controller drivers for UniPhier SoC platform
Date 2015-10-23 13:00 +0200
Message-ID <qmIeK-7BF-5@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


This series adds two I2C controller drivers.
(they are completely different IPs.)

The first one is a very simple FIFO-less I2C controller,
which is used on some older UniPhier SoCs.

The other one is higher-performance I2C controller with TX/RX FIFO,
used on newer UniPhier SoCs.


Changes in v2:
  - Delete if-block after platform_get_resource()
  - Add I2C_FUNC_SMBUS_EMUL to functionality
  - Add bindings document
  - Add entry to MAINTAINERS
  - Delete if-block after platform_get_resource()
  - Add I2C_FUNC_SMBUS_EMUL to functionality
  - Add bindings document
  - Fix a typo in a comment block

Masahiro Yamada (2):
  i2c: uniphier: add UniPhier FIFO-less I2C driver
  i2c: uniphier_f: add UniPhier FIFO-builtin I2C driver

 .../devicetree/bindings/i2c/i2c-uniphier-f.txt     |  25 +
 .../devicetree/bindings/i2c/i2c-uniphier.txt       |  25 +
 MAINTAINERS                                        |   1 +
 drivers/i2c/busses/Kconfig                         |  16 +
 drivers/i2c/busses/Makefile                        |   2 +
 drivers/i2c/busses/i2c-uniphier-f.c                | 584 +++++++++++++++++++++
 drivers/i2c/busses/i2c-uniphier.c                  | 441 ++++++++++++++++
 7 files changed, 1094 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-uniphier-f.txt
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-uniphier.txt
 create mode 100644 drivers/i2c/busses/i2c-uniphier-f.c
 create mode 100644 drivers/i2c/busses/i2c-uniphier.c

-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/2] i2c: uniphier: add two I2C controller drivers for UniPhier SoC platform Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-10-23 13:00 +0200
  [PATCH v2 2/2] i2c: uniphier_f: add UniPhier FIFO-builtin I2C driver Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-10-23 13:00 +0200
    Re: [PATCH v2 2/2] i2c: uniphier_f: add UniPhier FIFO-builtin I2C  driver Wolfram Sang <wsa@the-dreams.de> - 2015-10-23 13:50 +0200
  Re: [PATCH v2 0/2] i2c: uniphier: add two I2C controller drivers for  UniPhier SoC platform Lee Jones <lee.jones@linaro.org> - 2015-10-26 09:20 +0100
    Re: [PATCH v2 0/2] i2c: uniphier: add two I2C controller drivers for  UniPhier SoC platform Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-10-26 09:30 +0100
      Re: [PATCH v2 0/2] i2c: uniphier: add two I2C controller drivers for  UniPhier SoC platform Geert Uytterhoeven <geert@linux-m68k.org> - 2015-10-26 09:40 +0100
        Re: [PATCH v2 0/2] i2c: uniphier: add two I2C controller drivers for  UniPhier SoC platform Wolfram Sang <wsa@the-dreams.de> - 2015-10-26 09:40 +0100
        Re: [PATCH v2 0/2] i2c: uniphier: add two I2C controller drivers for  UniPhier SoC platform Lee Jones <lee.jones@linaro.org> - 2015-10-26 11:50 +0100

csiph-web