From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Daney Subject: [PATCH 0/3] Add I2C support for Octeon SOCs. Date: Thu, 07 Jan 2010 11:50:55 -0800 Message-ID: <4B463B1F.6000404@caviumnetworks.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Sender: linux-i2c-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: linux-mips , Ralf Baechle , linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, "Ben Dooks (embedded platforms)" , Jean Delvare (PC driver List-Id: linux-i2c@vger.kernel.org This patch set adds I2C driver support for Cavium Networks' Octeon processor family. The Octeon is a multi-core MIPS64 based SOC. The first patch adds platform devices for the I2C devices. The second patch is the main driver. Finally the third patch registers some devices so we have something to control with the fancy new driver. I will reply with the three patches. David Daney (2): MIPS: Octeon: Add I2C platform driver. MIPS: Octeon: Register some devices on the I2C bus. Rade Bozic (1): I2C: Add driver for Cavium OCTEON I2C ports. arch/mips/cavium-octeon/octeon-platform.c | 85 +++++ arch/mips/include/asm/octeon/octeon.h | 5 + drivers/i2c/busses/Kconfig | 10 + drivers/i2c/busses/Makefile | 1 + drivers/i2c/busses/i2c-octeon.c | 579 +++++++++++++++++++++++++++++ 5 files changed, 680 insertions(+), 0 deletions(-) create mode 100644 drivers/i2c/busses/i2c-octeon.c