Signed-off-by: Claudio Mignanti <c.mignanti@gmail.com> SVN-Revision: 31371master
parent
f50231aeb3
commit
3ac08ca653
@ -1,8 +1,2 @@ |
||||
CONFIG_ARCH_AT91SAM9G20=y |
||||
# CONFIG_ARCH_USES_GETTIMEOFFSET is not set |
||||
CONFIG_CRC16=y |
||||
CONFIG_JBD2=y |
||||
CONFIG_MACH_NETUS_FOXBOARD=y |
||||
# CONFIG_USB_FUNCTIONFS is not set |
||||
# CONFIG_USB_G_HID is not set |
||||
# CONFIG_USB_G_WEBCAM is not set |
||||
CONFIG_MACH_ACMENETUSFOXG20=y |
||||
|
@ -1,285 +0,0 @@ |
||||
--- a/drivers/i2c/busses/Kconfig
|
||||
+++ b/drivers/i2c/busses/Kconfig
|
||||
@@ -283,7 +283,7 @@ comment "I2C system bus drivers (mostly
|
||||
|
||||
config I2C_AT91
|
||||
tristate "Atmel AT91 I2C Two-Wire interface (TWI)"
|
||||
- depends on ARCH_AT91 && EXPERIMENTAL && BROKEN
|
||||
+ depends on ARCH_AT91 && EXPERIMENTAL
|
||||
help
|
||||
This supports the use of the I2C interface on Atmel AT91
|
||||
processors.
|
||||
--- a/drivers/i2c/busses/i2c-at91.c
|
||||
+++ b/drivers/i2c/busses/i2c-at91.c
|
||||
@@ -11,8 +11,18 @@
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
+
|
||||
+ D. Gilbert [20100318 AT91SAM9G20]
|
||||
+ - Check for NACK, a NACK will abort current tranfser,
|
||||
+ returned as errno=EREMOTEIO unless I2C_M_IGNORE_NAK is set
|
||||
+ - Only supports 7 bit I2C device (slave) address
|
||||
+ - clockrate adjustable (module_param).
|
||||
*/
|
||||
|
||||
+
|
||||
+/* Uncomment following line to see dev_dbg() output in logs */
|
||||
+/* #define DEBUG 1 */
|
||||
+
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/err.h>
|
||||
@@ -32,26 +42,28 @@
|
||||
#define TWI_CLOCK 100000 /* Hz. max 400 Kbits/sec */
|
||||
|
||||
|
||||
+static unsigned int clockrate = TWI_CLOCK;
|
||||
+static unsigned int prev_clockrate = TWI_CLOCK;
|
||||
static struct clk *twi_clk;
|
||||
static void __iomem *twi_base;
|
||||
|
||||
#define at91_twi_read(reg) __raw_readl(twi_base + (reg))
|
||||
#define at91_twi_write(reg, val) __raw_writel((val), twi_base + (reg))
|
||||
|
||||
-
|
||||
/*
|
||||
- * Initialize the TWI hardware registers.
|
||||
+ * Set TWI clock dividers based on clockrate (clock rate for SCL)
|
||||
*/
|
||||
-static void __devinit at91_twi_hwinit(void)
|
||||
+static void at91_twi_clock_dividers(void)
|
||||
{
|
||||
unsigned long cdiv, ckdiv;
|
||||
|
||||
- at91_twi_write(AT91_TWI_IDR, 0xffffffff); /* Disable all interrupts */
|
||||
- at91_twi_write(AT91_TWI_CR, AT91_TWI_SWRST); /* Reset peripheral */
|
||||
- at91_twi_write(AT91_TWI_CR, AT91_TWI_MSEN); /* Set Master mode */
|
||||
+ if (clockrate < 1000)
|
||||
+ clockrate = 1000;
|
||||
+ else if (clockrate > 400000)
|
||||
+ clockrate = 400000;
|
||||
|
||||
- /* Calcuate clock dividers */
|
||||
- cdiv = (clk_get_rate(twi_clk) / (2 * TWI_CLOCK)) - 3;
|
||||
+ /* Calculate clock dividers */
|
||||
+ cdiv = (clk_get_rate(twi_clk) / (2 * clockrate)) - 3;
|
||||
cdiv = cdiv + 1; /* round up */
|
||||
ckdiv = 0;
|
||||
while (cdiv > 255) {
|
||||
@@ -61,41 +73,92 @@ static void __devinit at91_twi_hwinit(vo
|
||||
|
||||
if (cpu_is_at91rm9200()) { /* AT91RM9200 Errata #22 */
|
||||
if (ckdiv > 5) {
|
||||
- printk(KERN_ERR "AT91 I2C: Invalid TWI_CLOCK value!\n");
|
||||
+ printk(KERN_ERR "i2c-at91: Invalid AT91RM9200 clock rate\n");
|
||||
ckdiv = 5;
|
||||
}
|
||||
}
|
||||
+ /* AT91SAM9G20 has 3 bits for ckdiv so it cannot exceed 7 */
|
||||
+ if (cpu_is_at91sam9g20()) {
|
||||
+ if (ckdiv > 7) {
|
||||
+ printk(KERN_ERR "i2c-at91: Invalid AT91SAM9G20 clock "
|
||||
+ "rate, ckdiv=%lu\n", ckdiv);
|
||||
+ ckdiv = 7;
|
||||
+ }
|
||||
+ }
|
||||
|
||||
at91_twi_write(AT91_TWI_CWGR, (ckdiv << 16) | (cdiv << 8) | cdiv);
|
||||
+ prev_clockrate = clockrate;
|
||||
}
|
||||
|
||||
/*
|
||||
- * Poll the i2c status register until the specified bit is set.
|
||||
- * Returns 0 if timed out (100 msec).
|
||||
+ * Initialize the TWI hardware registers.
|
||||
*/
|
||||
-static short at91_poll_status(unsigned long bit)
|
||||
+static void __devinit at91_twi_hwinit(void)
|
||||
{
|
||||
- int loop_cntr = 10000;
|
||||
+ at91_twi_write(AT91_TWI_IDR, 0xffffffff); /* Disable all interrupts */
|
||||
+ at91_twi_write(AT91_TWI_CR, AT91_TWI_SWRST); /* Reset peripheral */
|
||||
+ /* Set Master mode; Atmel suggests disabling slave mode */
|
||||
+ at91_twi_write(AT91_TWI_CR, AT91_TWI_MSEN | AT91_TWI_SVDIS);
|
||||
|
||||
+ at91_twi_clock_dividers();
|
||||
+}
|
||||
+
|
||||
+/*
|
||||
+ * Poll the i2c status register until the specified bit is set or a NACK
|
||||
+ * occurs. Returns 0 if timed out (50 msec). If nack_seen_p is non-NULL
|
||||
+ * then write 0 to it first, then if the NACK bit is set in the status
|
||||
+ * register then write 1 to it and immediately return with a value of 1.
|
||||
+ */
|
||||
+static short at91_poll_status(unsigned long bit, int * nack_seen_p)
|
||||
+{
|
||||
+ int loop_cntr = 5000;
|
||||
+ unsigned long stat;
|
||||
+
|
||||
+ if (nack_seen_p)
|
||||
+ *nack_seen_p = 0;
|
||||
+ if (clockrate <= 20000)
|
||||
+ loop_cntr = 100;
|
||||
do {
|
||||
- udelay(10);
|
||||
- } while (!(at91_twi_read(AT91_TWI_SR) & bit) && (--loop_cntr > 0));
|
||||
+ if (clockrate <= 20000)
|
||||
+ udelay(100);
|
||||
+ else if (clockrate <= 100000)
|
||||
+ udelay(10);
|
||||
+ else
|
||||
+ udelay(3);
|
||||
+ stat = at91_twi_read(AT91_TWI_SR);
|
||||
+ if ((stat & AT91_TWI_NACK) && nack_seen_p) {
|
||||
+ *nack_seen_p = 1;
|
||||
+ return 1;
|
||||
+ }
|
||||
+ } while (!(stat & bit) && (--loop_cntr > 0));
|
||||
|
||||
return (loop_cntr > 0);
|
||||
}
|
||||
|
||||
static int xfer_read(struct i2c_adapter *adap, unsigned char *buf, int length)
|
||||
{
|
||||
+ int nack_seen = 0;
|
||||
+ int sent_stop = 0;
|
||||
+
|
||||
/* Send Start */
|
||||
- at91_twi_write(AT91_TWI_CR, AT91_TWI_START);
|
||||
+ if (1 == length) {
|
||||
+ at91_twi_write(AT91_TWI_CR, AT91_TWI_START | AT91_TWI_STOP);
|
||||
+ sent_stop = 1;
|
||||
+ } else
|
||||
+ at91_twi_write(AT91_TWI_CR, AT91_TWI_START);
|
||||
|
||||
/* Read data */
|
||||
while (length--) {
|
||||
- if (!length) /* need to send Stop before reading last byte */
|
||||
+ /* send Stop before reading last byte (if not already done) */
|
||||
+ if ((0 == length) && (0 == sent_stop))
|
||||
at91_twi_write(AT91_TWI_CR, AT91_TWI_STOP);
|
||||
- if (!at91_poll_status(AT91_TWI_RXRDY)) {
|
||||
+ if (!at91_poll_status(AT91_TWI_RXRDY, &nack_seen)) {
|
||||
dev_dbg(&adap->dev, "RXRDY timeout\n");
|
||||
return -ETIMEDOUT;
|
||||
+ } else if (nack_seen) {
|
||||
+ dev_dbg(&adap->dev, "read NACKed\n");
|
||||
+ /* NACK supplies Stop */
|
||||
+ return -EREMOTEIO;
|
||||
}
|
||||
*buf++ = (at91_twi_read(AT91_TWI_RHR) & 0xff);
|
||||
}
|
||||
@@ -105,16 +168,24 @@ static int xfer_read(struct i2c_adapter
|
||||
|
||||
static int xfer_write(struct i2c_adapter *adap, unsigned char *buf, int length)
|
||||
{
|
||||
+ int nack_seen = 0;
|
||||
+
|
||||
/* Load first byte into transmitter */
|
||||
at91_twi_write(AT91_TWI_THR, *buf++);
|
||||
|
||||
- /* Send Start */
|
||||
+ /* Send Start [AT91SAM9G20 does not need this on write] */
|
||||
at91_twi_write(AT91_TWI_CR, AT91_TWI_START);
|
||||
|
||||
do {
|
||||
- if (!at91_poll_status(AT91_TWI_TXRDY)) {
|
||||
+ if (!at91_poll_status(AT91_TWI_TXRDY, &nack_seen)) {
|
||||
dev_dbg(&adap->dev, "TXRDY timeout\n");
|
||||
+ /* Set Master mode again */
|
||||
+ at91_twi_write(AT91_TWI_CR, AT91_TWI_MSEN);
|
||||
return -ETIMEDOUT;
|
||||
+ } else if (nack_seen) {
|
||||
+ dev_dbg(&adap->dev, "write NACKed\n");
|
||||
+ /* NACK supplies Stop */
|
||||
+ return -EREMOTEIO;
|
||||
}
|
||||
|
||||
length--; /* byte was transmitted */
|
||||
@@ -123,7 +194,7 @@ static int xfer_write(struct i2c_adapter
|
||||
at91_twi_write(AT91_TWI_THR, *buf++);
|
||||
} while (length);
|
||||
|
||||
- /* Send Stop */
|
||||
+ /* Send Stop [AT91SAM9G20 does not need this on write] */
|
||||
at91_twi_write(AT91_TWI_CR, AT91_TWI_STOP);
|
||||
|
||||
return 0;
|
||||
@@ -136,11 +207,19 @@ static int xfer_write(struct i2c_adapter
|
||||
* Instead the "internal device address" has to be written using a separate
|
||||
* i2c message.
|
||||
* http://lists.arm.linux.org.uk/pipermail/linux-arm-kernel/2004-September/024411.html
|
||||
+ * [dpg] By 2010 silicon bugs should be fixed, will need IADR for 10 bit device address
|
||||
*/
|
||||
static int at91_xfer(struct i2c_adapter *adap, struct i2c_msg *pmsg, int num)
|
||||
{
|
||||
int i, ret;
|
||||
+ int nack_seen = 0;
|
||||
|
||||
+ if (prev_clockrate != clockrate) {
|
||||
+ dev_dbg(&adap->dev, "at91_xfer: prev_clockrate=%u "
|
||||
+ "clockrate=%u, change\n", prev_clockrate, clockrate);
|
||||
+ at91_twi_clock_dividers();
|
||||
+ msleep(1); /* let things settle */
|
||||
+ }
|
||||
dev_dbg(&adap->dev, "at91_xfer: processing %d messages:\n", num);
|
||||
|
||||
for (i = 0; i < num; i++) {
|
||||
@@ -158,13 +237,23 @@ static int at91_xfer(struct i2c_adapter
|
||||
else
|
||||
ret = xfer_write(adap, pmsg->buf, pmsg->len);
|
||||
|
||||
- if (ret)
|
||||
- return ret;
|
||||
-
|
||||
+ if (ret) {
|
||||
+ if ((I2C_M_IGNORE_NAK & pmsg->flags) &&
|
||||
+ (-EREMOTEIO == ret)) {
|
||||
+ dev_dbg(&adap->dev, "transfer "
|
||||
+ "NACKed, skip to next\n");
|
||||
+ pmsg++;
|
||||
+ continue;
|
||||
+ } else
|
||||
+ return ret;
|
||||
+ }
|
||||
/* Wait until transfer is finished */
|
||||
- if (!at91_poll_status(AT91_TWI_TXCOMP)) {
|
||||
+ if (!at91_poll_status(AT91_TWI_TXCOMP, &nack_seen)) {
|
||||
dev_dbg(&adap->dev, "TXCOMP timeout\n");
|
||||
return -ETIMEDOUT;
|
||||
+ } else if (nack_seen) {
|
||||
+ dev_dbg(&adap->dev, "TXCOMP NACKed\n");
|
||||
+ return -EREMOTEIO;
|
||||
}
|
||||
}
|
||||
dev_dbg(&adap->dev, "transfer complete\n");
|
||||
@@ -239,7 +328,8 @@ static int __devinit at91_i2c_probe(stru
|
||||
goto fail3;
|
||||
}
|
||||
|
||||
- dev_info(&pdev->dev, "AT91 i2c bus driver.\n");
|
||||
+ dev_info(&pdev->dev, "AT91 TWI (I2C) bus driver [SCL %d Hz]\n",
|
||||
+ clockrate);
|
||||
return 0;
|
||||
|
||||
fail3:
|
||||
@@ -295,6 +385,11 @@ static int at91_i2c_resume(struct platfo
|
||||
#define at91_i2c_resume NULL
|
||||
#endif
|
||||
|
||||
+/* I2C clock speed, in Hz 0-400kHz*/
|
||||
+module_param(clockrate, uint, S_IRUGO | S_IWUSR);
|
||||
+MODULE_PARM_DESC(clockrate,
|
||||
+ "SCL clock rate, 1000 to 400000 Hz (def: 100 kHz)");
|
||||
+
|
||||
/* work with "modprobe at91_i2c" from hotplugging or coldplugging */
|
||||
MODULE_ALIAS("platform:at91_i2c");
|
||||
|
||||
@@ -323,5 +418,5 @@ module_init(at91_i2c_init);
|
||||
module_exit(at91_i2c_exit);
|
||||
|
||||
MODULE_AUTHOR("Rick Bronson");
|
||||
-MODULE_DESCRIPTION("I2C (TWI) driver for Atmel AT91");
|
||||
+MODULE_DESCRIPTION("I2C (TWI) master driver for Atmel AT91");
|
||||
MODULE_LICENSE("GPL");
|
@ -1,23 +0,0 @@ |
||||
--- a/drivers/misc/Kconfig
|
||||
+++ b/drivers/misc/Kconfig
|
||||
@@ -104,6 +104,10 @@ config ATMEL_TCB_CLKSRC_BLOCK
|
||||
TC can be used for other purposes, such as PWM generation and
|
||||
interval timing.
|
||||
|
||||
+config AT91_ADC
|
||||
+ tristate "AT91 ADC converter"
|
||||
+ depends on ARCH_AT91 && SYSFS
|
||||
+
|
||||
config IBM_ASM
|
||||
tristate "Device driver for IBM RSA service processor"
|
||||
depends on X86 && PCI && INPUT && EXPERIMENTAL
|
||||
--- a/drivers/misc/Makefile
|
||||
+++ b/drivers/misc/Makefile
|
||||
@@ -9,6 +9,7 @@ obj-$(CONFIG_AD525X_DPOT_SPI) += ad525x_
|
||||
obj-$(CONFIG_ATMEL_PWM) += atmel_pwm.o
|
||||
obj-$(CONFIG_ATMEL_SSC) += atmel-ssc.o
|
||||
obj-$(CONFIG_ATMEL_TCLIB) += atmel_tclib.o
|
||||
+obj-$(CONFIG_AT91_ADC) += at91-adc.o
|
||||
obj-$(CONFIG_BMP085) += bmp085.o
|
||||
obj-$(CONFIG_ICS932S401) += ics932s401.o
|
||||
obj-$(CONFIG_LKDTM) += lkdtm.o
|
@ -1,84 +0,0 @@ |
||||
--- a/arch/arm/mach-at91/at91cap9_devices.c
|
||||
+++ b/arch/arm/mach-at91/at91cap9_devices.c
|
||||
@@ -77,7 +77,7 @@ void __init at91_add_device_usbh(struct
|
||||
/* Enable VBus control for UHP ports */
|
||||
for (i = 0; i < data->ports; i++) {
|
||||
if (data->vbus_pin[i])
|
||||
- at91_set_gpio_output(data->vbus_pin[i], 0);
|
||||
+ at91_set_gpio_output(data->vbus_pin[i], data->vbus_active_high);
|
||||
}
|
||||
|
||||
usbh_data = *data;
|
||||
--- a/arch/arm/mach-at91/at91sam9263_devices.c
|
||||
+++ b/arch/arm/mach-at91/at91sam9263_devices.c
|
||||
@@ -71,7 +71,7 @@ void __init at91_add_device_usbh(struct
|
||||
/* Enable VBus control for UHP ports */
|
||||
for (i = 0; i < data->ports; i++) {
|
||||
if (data->vbus_pin[i])
|
||||
- at91_set_gpio_output(data->vbus_pin[i], 0);
|
||||
+ at91_set_gpio_output(data->vbus_pin[i], data->vbus_active_high);
|
||||
}
|
||||
|
||||
usbh_data = *data;
|
||||
--- a/arch/arm/mach-at91/at91sam9g45_devices.c
|
||||
+++ b/arch/arm/mach-at91/at91sam9g45_devices.c
|
||||
@@ -121,7 +121,7 @@ void __init at91_add_device_usbh_ohci(st
|
||||
/* Enable VBus control for UHP ports */
|
||||
for (i = 0; i < data->ports; i++) {
|
||||
if (data->vbus_pin[i])
|
||||
- at91_set_gpio_output(data->vbus_pin[i], 0);
|
||||
+ at91_set_gpio_output(data->vbus_pin[i], data->vbus_active_high);
|
||||
}
|
||||
|
||||
usbh_ohci_data = *data;
|
||||
@@ -176,7 +176,7 @@ void __init at91_add_device_usbh_ehci(st
|
||||
/* Enable VBus control for UHP ports */
|
||||
for (i = 0; i < data->ports; i++) {
|
||||
if (data->vbus_pin[i])
|
||||
- at91_set_gpio_output(data->vbus_pin[i], 0);
|
||||
+ at91_set_gpio_output(data->vbus_pin[i], data->vbus_active_high);
|
||||
}
|
||||
|
||||
usbh_ehci_data = *data;
|
||||
--- a/arch/arm/mach-at91/include/mach/board.h
|
||||
+++ b/arch/arm/mach-at91/include/mach/board.h
|
||||
@@ -96,8 +96,9 @@ extern void __init at91_add_device_eth(s
|
||||
|
||||
/* USB Host */
|
||||
struct at91_usbh_data {
|
||||
- u8 ports; /* number of ports on root hub */
|
||||
- u8 vbus_pin[2]; /* port power-control pin */
|
||||
+ u8 ports; /* number of ports on root hub */
|
||||
+ u8 vbus_pin[2]; /* port power-control pin */
|
||||
+ u8 vbus_active_high; /* true == vbus_pins are active high */
|
||||
};
|
||||
extern void __init at91_add_device_usbh(struct at91_usbh_data *data);
|
||||
extern void __init at91_add_device_usbh_ohci(struct at91_usbh_data *data);
|
||||
--- a/drivers/usb/host/ohci-at91.c
|
||||
+++ b/drivers/usb/host/ohci-at91.c
|
||||
@@ -277,14 +277,13 @@ static int ohci_hcd_at91_drv_probe(struc
|
||||
if (pdata) {
|
||||
/* REVISIT make the driver support per-port power switching,
|
||||
* and also overcurrent detection. Here we assume the ports
|
||||
- * are always powered while this driver is active, and use
|
||||
- * active-low power switches.
|
||||
+ * are always powered while this driver is active.
|
||||
*/
|
||||
for (i = 0; i < ARRAY_SIZE(pdata->vbus_pin); i++) {
|
||||
if (pdata->vbus_pin[i] <= 0)
|
||||
continue;
|
||||
gpio_request(pdata->vbus_pin[i], "ohci_vbus");
|
||||
- gpio_direction_output(pdata->vbus_pin[i], 0);
|
||||
+ gpio_direction_output(pdata->vbus_pin[i], pdata->vbus_active_high);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -301,7 +300,7 @@ static int ohci_hcd_at91_drv_remove(stru
|
||||
for (i = 0; i < ARRAY_SIZE(pdata->vbus_pin); i++) {
|
||||
if (pdata->vbus_pin[i] <= 0)
|
||||
continue;
|
||||
- gpio_direction_output(pdata->vbus_pin[i], 1);
|
||||
+ gpio_direction_output(pdata->vbus_pin[i], !pdata->vbus_active_high);
|
||||
gpio_free(pdata->vbus_pin[i]);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue