From: Ben Dooks <ben.dooks@codethink.co.uk>
To: Alessandro Rubini <rubini@gnudd.com>
Cc: Giancarlo Asnaghi <giancarlo.asnaghi@st.com>,
Russell King <linux@arm.linux.org.uk>,
Linus Walleij <linus.walleij@stericsson.com>,
Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>,
linux-kernel@vger.kernel.org,
Wolfram Sang <w.sang@pengutronix.de>,
STEricsson_nomadik_linux@list.st.com, linux-i2c@vger.kernel.org,
Jean Delvare <khali@linux-fr.org>,
linux-arm-kernel@lists.infradead.org,
Alan Cox <alan@linux.intel.com>
Subject: Re: [PATCH RFC 1/3] i2c-nomadik: move header from <plat/i2c.h> to <linux/i2c-nomadik.h>
Date: Thu, 31 May 2012 09:32:15 +0100 [thread overview]
Message-ID: <4FC72C8F.30206@codethink.co.uk> (raw)
In-Reply-To: <ca47a47e0a4db31545549ed978e1dc7b3aad4377.1338398567.git.rubini@gnudd.com>
On 30/05/12 18:45, Alessandro Rubini wrote:
> The header and driver were only used by arm/mach-nomadik and
> arm/mach-u8500. The STA2X11 I/O Hub exports on PCIe a number of
> devices, including i2c-nomadik. This patch allows compilation of
> the driver under x86.
>
> Signed-off-by: Alessandro Rubini<rubini@gnudd.com>
> Acked-by: Giancarlo Asnaghi<giancarlo.asnaghi@st.com>
> -
> -#endif /* __PLAT_I2C_H */
> diff --git a/drivers/i2c/busses/i2c-nomadik.c b/drivers/i2c/busses/i2c-nomadik.c
> index 5267ab9..09b7589 100644
> --- a/drivers/i2c/busses/i2c-nomadik.c
> +++ b/drivers/i2c/busses/i2c-nomadik.c
> @@ -23,8 +23,7 @@
> #include<linux/io.h>
> #include<linux/regulator/consumer.h>
> #include<linux/pm_runtime.h>
> -
> -#include<plat/i2c.h>
> +#include<linux/i2c-nomadik.h>
>
> #define DRIVER_NAME "nmk-i2c"
>
> diff --git a/include/linux/i2c-nomadik.h b/include/linux/i2c-nomadik.h
> new file mode 100644
> index 0000000..9350fe9
> --- /dev/null
> +++ b/include/linux/i2c-nomadik.h
> @@ -0,0 +1,39 @@
> +/*
> + * Copyright (C) 2009 ST-Ericsson
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2, as
> + * published by the Free Software Foundation.
> + */
> +#ifndef __LINUX_I2C_NOMADIK_H
> +#define __LINUX_I2C_NOMADIK_H
> +
> +enum i2c_freq_mode {
> + I2C_FREQ_MODE_STANDARD, /* up to 100 Kb/s */
> + I2C_FREQ_MODE_FAST, /* up to 400 Kb/s */
> + I2C_FREQ_MODE_HIGH_SPEED, /* up to 3.4 Mb/s */
> + I2C_FREQ_MODE_FAST_PLUS, /* up to 1 Mb/s */
> +};
> +
> +/**
> + * struct nmk_i2c_controller - client specific controller configuration
> + * @clk_freq: clock frequency for the operation mode
> + * @slsu: Slave data setup time in ns.
> + * The needed setup time for three modes of operation
> + * are 250ns, 100ns and 10ns respectively thus leading
> + * to the values of 14, 6, 2 for a 48 MHz i2c clk
> + * @tft: Tx FIFO Threshold in bytes
> + * @rft: Rx FIFO Threshold in bytes
> + * @timeout Slave response timeout(ms)
> + * @sm: speed mode
> + */
> +struct nmk_i2c_controller {
> + unsigned long clk_freq;
> + unsigned short slsu;
> + unsigned char tft;
> + unsigned char rft;
> + int timeout;
> + enum i2c_freq_mode sm;
> +};
> +
> +#endif /* __LINUX_I2C_NOMADIK_H */
How about moving it to include/linux/platform_data so that we're
not filling include/linux with a bunch of driver specific includes?
--
Ben Dooks http://www.codethink.co.uk/
Senior Engineer Codethink - Providing Genius
WARNING: multiple messages have this Message-ID (diff)
From: ben.dooks@codethink.co.uk (Ben Dooks)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RFC 1/3] i2c-nomadik: move header from <plat/i2c.h> to <linux/i2c-nomadik.h>
Date: Thu, 31 May 2012 09:32:15 +0100 [thread overview]
Message-ID: <4FC72C8F.30206@codethink.co.uk> (raw)
In-Reply-To: <ca47a47e0a4db31545549ed978e1dc7b3aad4377.1338398567.git.rubini@gnudd.com>
On 30/05/12 18:45, Alessandro Rubini wrote:
> The header and driver were only used by arm/mach-nomadik and
> arm/mach-u8500. The STA2X11 I/O Hub exports on PCIe a number of
> devices, including i2c-nomadik. This patch allows compilation of
> the driver under x86.
>
> Signed-off-by: Alessandro Rubini<rubini@gnudd.com>
> Acked-by: Giancarlo Asnaghi<giancarlo.asnaghi@st.com>
> -
> -#endif /* __PLAT_I2C_H */
> diff --git a/drivers/i2c/busses/i2c-nomadik.c b/drivers/i2c/busses/i2c-nomadik.c
> index 5267ab9..09b7589 100644
> --- a/drivers/i2c/busses/i2c-nomadik.c
> +++ b/drivers/i2c/busses/i2c-nomadik.c
> @@ -23,8 +23,7 @@
> #include<linux/io.h>
> #include<linux/regulator/consumer.h>
> #include<linux/pm_runtime.h>
> -
> -#include<plat/i2c.h>
> +#include<linux/i2c-nomadik.h>
>
> #define DRIVER_NAME "nmk-i2c"
>
> diff --git a/include/linux/i2c-nomadik.h b/include/linux/i2c-nomadik.h
> new file mode 100644
> index 0000000..9350fe9
> --- /dev/null
> +++ b/include/linux/i2c-nomadik.h
> @@ -0,0 +1,39 @@
> +/*
> + * Copyright (C) 2009 ST-Ericsson
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2, as
> + * published by the Free Software Foundation.
> + */
> +#ifndef __LINUX_I2C_NOMADIK_H
> +#define __LINUX_I2C_NOMADIK_H
> +
> +enum i2c_freq_mode {
> + I2C_FREQ_MODE_STANDARD, /* up to 100 Kb/s */
> + I2C_FREQ_MODE_FAST, /* up to 400 Kb/s */
> + I2C_FREQ_MODE_HIGH_SPEED, /* up to 3.4 Mb/s */
> + I2C_FREQ_MODE_FAST_PLUS, /* up to 1 Mb/s */
> +};
> +
> +/**
> + * struct nmk_i2c_controller - client specific controller configuration
> + * @clk_freq: clock frequency for the operation mode
> + * @slsu: Slave data setup time in ns.
> + * The needed setup time for three modes of operation
> + * are 250ns, 100ns and 10ns respectively thus leading
> + * to the values of 14, 6, 2 for a 48 MHz i2c clk
> + * @tft: Tx FIFO Threshold in bytes
> + * @rft: Rx FIFO Threshold in bytes
> + * @timeout Slave response timeout(ms)
> + * @sm: speed mode
> + */
> +struct nmk_i2c_controller {
> + unsigned long clk_freq;
> + unsigned short slsu;
> + unsigned char tft;
> + unsigned char rft;
> + int timeout;
> + enum i2c_freq_mode sm;
> +};
> +
> +#endif /* __LINUX_I2C_NOMADIK_H */
How about moving it to include/linux/platform_data so that we're
not filling include/linux with a bunch of driver specific includes?
--
Ben Dooks http://www.codethink.co.uk/
Senior Engineer Codethink - Providing Genius
WARNING: multiple messages have this Message-ID (diff)
From: Ben Dooks <ben.dooks@codethink.co.uk>
To: Alessandro Rubini <rubini@gnudd.com>
Cc: linux-kernel@vger.kernel.org,
Giancarlo Asnaghi <giancarlo.asnaghi@st.com>,
Russell King <linux@arm.linux.org.uk>,
Linus Walleij <linus.walleij@stericsson.com>,
Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>,
Wolfram Sang <w.sang@pengutronix.de>,
Jean Delvare <khali@linux-fr.org>,
linux-i2c@vger.kernel.org, STEricsson_nomadik_linux@list.st.com,
linux-arm-kernel@lists.infradead.org,
Alan Cox <alan@linux.intel.com>
Subject: Re: [PATCH RFC 1/3] i2c-nomadik: move header from <plat/i2c.h> to <linux/i2c-nomadik.h>
Date: Thu, 31 May 2012 09:32:15 +0100 [thread overview]
Message-ID: <4FC72C8F.30206@codethink.co.uk> (raw)
In-Reply-To: <ca47a47e0a4db31545549ed978e1dc7b3aad4377.1338398567.git.rubini@gnudd.com>
On 30/05/12 18:45, Alessandro Rubini wrote:
> The header and driver were only used by arm/mach-nomadik and
> arm/mach-u8500. The STA2X11 I/O Hub exports on PCIe a number of
> devices, including i2c-nomadik. This patch allows compilation of
> the driver under x86.
>
> Signed-off-by: Alessandro Rubini<rubini@gnudd.com>
> Acked-by: Giancarlo Asnaghi<giancarlo.asnaghi@st.com>
> -
> -#endif /* __PLAT_I2C_H */
> diff --git a/drivers/i2c/busses/i2c-nomadik.c b/drivers/i2c/busses/i2c-nomadik.c
> index 5267ab9..09b7589 100644
> --- a/drivers/i2c/busses/i2c-nomadik.c
> +++ b/drivers/i2c/busses/i2c-nomadik.c
> @@ -23,8 +23,7 @@
> #include<linux/io.h>
> #include<linux/regulator/consumer.h>
> #include<linux/pm_runtime.h>
> -
> -#include<plat/i2c.h>
> +#include<linux/i2c-nomadik.h>
>
> #define DRIVER_NAME "nmk-i2c"
>
> diff --git a/include/linux/i2c-nomadik.h b/include/linux/i2c-nomadik.h
> new file mode 100644
> index 0000000..9350fe9
> --- /dev/null
> +++ b/include/linux/i2c-nomadik.h
> @@ -0,0 +1,39 @@
> +/*
> + * Copyright (C) 2009 ST-Ericsson
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2, as
> + * published by the Free Software Foundation.
> + */
> +#ifndef __LINUX_I2C_NOMADIK_H
> +#define __LINUX_I2C_NOMADIK_H
> +
> +enum i2c_freq_mode {
> + I2C_FREQ_MODE_STANDARD, /* up to 100 Kb/s */
> + I2C_FREQ_MODE_FAST, /* up to 400 Kb/s */
> + I2C_FREQ_MODE_HIGH_SPEED, /* up to 3.4 Mb/s */
> + I2C_FREQ_MODE_FAST_PLUS, /* up to 1 Mb/s */
> +};
> +
> +/**
> + * struct nmk_i2c_controller - client specific controller configuration
> + * @clk_freq: clock frequency for the operation mode
> + * @slsu: Slave data setup time in ns.
> + * The needed setup time for three modes of operation
> + * are 250ns, 100ns and 10ns respectively thus leading
> + * to the values of 14, 6, 2 for a 48 MHz i2c clk
> + * @tft: Tx FIFO Threshold in bytes
> + * @rft: Rx FIFO Threshold in bytes
> + * @timeout Slave response timeout(ms)
> + * @sm: speed mode
> + */
> +struct nmk_i2c_controller {
> + unsigned long clk_freq;
> + unsigned short slsu;
> + unsigned char tft;
> + unsigned char rft;
> + int timeout;
> + enum i2c_freq_mode sm;
> +};
> +
> +#endif /* __LINUX_I2C_NOMADIK_H */
How about moving it to include/linux/platform_data so that we're
not filling include/linux with a bunch of driver specific includes?
--
Ben Dooks http://www.codethink.co.uk/
Senior Engineer Codethink - Providing Genius
next prev parent reply other threads:[~2012-05-31 8:32 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-30 17:45 [PATCH RFC 0/3] i2c-nomadik changes Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
2012-05-30 17:45 ` [PATCH RFC 1/3] i2c-nomadik: move header from <plat/i2c.h> to <linux/i2c-nomadik.h> Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
[not found] ` <ca47a47e0a4db31545549ed978e1dc7b3aad4377.1338398567.git.rubini-kaDoWcXyVrEAvxtiuMwx3w@public.gmane.org>
2012-05-31 1:47 ` Linus Walleij
2012-05-31 1:47 ` Linus Walleij
2012-05-31 1:47 ` Linus Walleij
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:32 ` Ben Dooks [this message]
2012-05-31 8:32 ` Ben Dooks
2012-05-31 8:32 ` Ben Dooks
[not found] ` <cover.1338398567.git.rubini-kaDoWcXyVrEAvxtiuMwx3w@public.gmane.org>
2012-05-30 17:45 ` [PATCH RFC 2/3] i2c-nomadik: turn the platform driver to an amba driver Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
[not found] ` <349645b61d0b28f6e84f7ae1f2c8c28e12a11d92.1338398567.git.rubini-kaDoWcXyVrEAvxtiuMwx3w@public.gmane.org>
2012-05-31 1:51 ` Linus Walleij
2012-05-31 1:51 ` Linus Walleij
2012-05-31 1:51 ` Linus Walleij
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:37 ` Ben Dooks
2012-05-31 10:16 ` Linus Walleij
2012-05-31 10:16 ` Linus Walleij
2012-05-31 10:16 ` Linus Walleij
[not found] ` <CACRpkdZpjn0RBGY+CqqSW3ip0MSQUJSaqN0GD=a4THnPHNM-jg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-05-31 18:02 ` Alessandro Rubini
2012-05-31 18:02 ` Alessandro Rubini
2012-05-31 18:02 ` Alessandro Rubini
[not found] ` <20120531180204.GA28779-eyGpkxvC2QLRELXczCotyA@public.gmane.org>
2012-06-01 1:53 ` Linus Walleij
2012-06-01 1:53 ` Linus Walleij
2012-06-01 1:53 ` Linus Walleij
2012-06-01 2:24 ` Lee Jones
2012-06-01 2:24 ` Lee Jones
2012-06-01 2:24 ` Lee Jones
2012-05-31 1:55 ` [PATCH RFC 0/3] i2c-nomadik changes Linus Walleij
2012-05-31 1:55 ` Linus Walleij
2012-05-31 1:55 ` Linus Walleij
2012-05-30 17:46 ` [PATCH RFC 3/3] i2c-nomadik: depend on ARM_AMBA, not PLAT_NOMADIK Alessandro Rubini
2012-05-30 17:46 ` Alessandro Rubini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4FC72C8F.30206@codethink.co.uk \
--to=ben.dooks@codethink.co.uk \
--cc=STEricsson_nomadik_linux@list.st.com \
--cc=alan@linux.intel.com \
--cc=giancarlo.asnaghi@st.com \
--cc=khali@linux-fr.org \
--cc=linus.walleij@stericsson.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=rubini@gnudd.com \
--cc=srinidhi.kasagar@stericsson.com \
--cc=w.sang@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.