Commit b4a3ac9a authored by John Linn's avatar John Linn Committed by Dmitry Torokhov

Input: xilinx_ps2 - various cleanups

Review comments were incorporated to improve the driver.

1. Some data was eliminated that was not needed.
2. Renaming of variables for clarity.
3. Removed unneeded type casting.
4. Changed to use dev_err rather than other I/O.
5. Merged together some functions.
6. Added kerneldoc format to functions.
Signed-off-by: default avatarSadanand <sadanan@xilinx.com>
Signed-off-by: default avatarJohn Linn <john.linn@xilinx.com>
Acked-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
Acked-by: default avatarGrant Likely <grant.likely@secretlab.ca>
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 2d56f3a3
...@@ -69,12 +69,9 @@ ...@@ -69,12 +69,9 @@
struct xps2data { struct xps2data {
int irq; int irq;
u32 phys_addr;
u32 remap_size;
spinlock_t lock; spinlock_t lock;
u8 rxb; /* Rx buffer */
void __iomem *base_address; /* virt. address of control registers */ void __iomem *base_address; /* virt. address of control registers */
unsigned int dfl; unsigned int flags;
struct serio serio; /* serio */ struct serio serio; /* serio */
}; };
...@@ -82,8 +79,13 @@ struct xps2data { ...@@ -82,8 +79,13 @@ struct xps2data {
/* XPS PS/2 data transmission calls */ /* XPS PS/2 data transmission calls */
/************************************/ /************************************/
/* /**
* xps2_recv() will attempt to receive a byte of data from the PS/2 port. * xps2_recv() - attempts to receive a byte from the PS/2 port.
* @drvdata: pointer to ps2 device private data structure
* @byte: address where the read data will be copied
*
* If there is any data available in the PS/2 receiver, this functions reads
* the data, otherwise it returns error.
*/ */
static int xps2_recv(struct xps2data *drvdata, u8 *byte) static int xps2_recv(struct xps2data *drvdata, u8 *byte)
{ {
...@@ -116,33 +118,27 @@ static irqreturn_t xps2_interrupt(int irq, void *dev_id) ...@@ -116,33 +118,27 @@ static irqreturn_t xps2_interrupt(int irq, void *dev_id)
/* Check which interrupt is active */ /* Check which interrupt is active */
if (intr_sr & XPS2_IPIXR_RX_OVF) if (intr_sr & XPS2_IPIXR_RX_OVF)
printk(KERN_WARNING "%s: receive overrun error\n", dev_warn(drvdata->serio.dev.parent, "receive overrun error\n");
drvdata->serio.name);
if (intr_sr & XPS2_IPIXR_RX_ERR) if (intr_sr & XPS2_IPIXR_RX_ERR)
drvdata->dfl |= SERIO_PARITY; drvdata->flags |= SERIO_PARITY;
if (intr_sr & (XPS2_IPIXR_TX_NOACK | XPS2_IPIXR_WDT_TOUT)) if (intr_sr & (XPS2_IPIXR_TX_NOACK | XPS2_IPIXR_WDT_TOUT))
drvdata->dfl |= SERIO_TIMEOUT; drvdata->flags |= SERIO_TIMEOUT;
if (intr_sr & XPS2_IPIXR_RX_FULL) { if (intr_sr & XPS2_IPIXR_RX_FULL) {
status = xps2_recv(drvdata, &drvdata->rxb); status = xps2_recv(drvdata, &c);
/* Error, if a byte is not received */ /* Error, if a byte is not received */
if (status) { if (status) {
printk(KERN_ERR dev_err(drvdata->serio.dev.parent,
"%s: wrong rcvd byte count (%d)\n", "wrong rcvd byte count (%d)\n", status);
drvdata->serio.name, status);
} else { } else {
c = drvdata->rxb; serio_interrupt(&drvdata->serio, c, drvdata->flags);
serio_interrupt(&drvdata->serio, c, drvdata->dfl); drvdata->flags = 0;
drvdata->dfl = 0;
} }
} }
if (intr_sr & XPS2_IPIXR_TX_ACK)
drvdata->dfl = 0;
return IRQ_HANDLED; return IRQ_HANDLED;
} }
...@@ -150,8 +146,15 @@ static irqreturn_t xps2_interrupt(int irq, void *dev_id) ...@@ -150,8 +146,15 @@ static irqreturn_t xps2_interrupt(int irq, void *dev_id)
/* serio callbacks */ /* serio callbacks */
/*******************/ /*******************/
/* /**
* sxps2_write() sends a byte out through the PS/2 interface. * sxps2_write() - sends a byte out through the PS/2 port.
* @pserio: pointer to the serio structure of the PS/2 port
* @c: data that needs to be written to the PS/2 port
*
* This function checks if the PS/2 transmitter is empty and sends a byte.
* Otherwise it returns error. Transmission fails only when nothing is connected
* to the PS/2 port. Thats why, we do not try to resend the data in case of a
* failure.
*/ */
static int sxps2_write(struct serio *pserio, unsigned char c) static int sxps2_write(struct serio *pserio, unsigned char c)
{ {
...@@ -174,33 +177,39 @@ static int sxps2_write(struct serio *pserio, unsigned char c) ...@@ -174,33 +177,39 @@ static int sxps2_write(struct serio *pserio, unsigned char c)
return status; return status;
} }
/* /**
* sxps2_open() is called when a port is open by the higher layer. * sxps2_open() - called when a port is opened by the higher layer.
* @pserio: pointer to the serio structure of the PS/2 device
*
* This function requests irq and enables interrupts for the PS/2 device.
*/ */
static int sxps2_open(struct serio *pserio) static int sxps2_open(struct serio *pserio)
{ {
struct xps2data *drvdata = pserio->port_data; struct xps2data *drvdata = pserio->port_data;
int retval; int error;
u8 c;
retval = request_irq(drvdata->irq, &xps2_interrupt, 0, error = request_irq(drvdata->irq, &xps2_interrupt, 0,
DRIVER_NAME, drvdata); DRIVER_NAME, drvdata);
if (retval) { if (error) {
printk(KERN_ERR dev_err(drvdata->serio.dev.parent,
"%s: Couldn't allocate interrupt %d\n", "Couldn't allocate interrupt %d\n", drvdata->irq);
drvdata->serio.name, drvdata->irq); return error;
return retval;
} }
/* start reception by enabling the interrupts */ /* start reception by enabling the interrupts */
out_be32(drvdata->base_address + XPS2_GIER_OFFSET, XPS2_GIER_GIE_MASK); out_be32(drvdata->base_address + XPS2_GIER_OFFSET, XPS2_GIER_GIE_MASK);
out_be32(drvdata->base_address + XPS2_IPIER_OFFSET, XPS2_IPIXR_RX_ALL); out_be32(drvdata->base_address + XPS2_IPIER_OFFSET, XPS2_IPIXR_RX_ALL);
(void)xps2_recv(drvdata, &drvdata->rxb); (void)xps2_recv(drvdata, &c);
return 0; /* success */ return 0; /* success */
} }
/* /**
* sxps2_close() frees the interrupt. * sxps2_close() - frees the interrupt.
* @pserio: pointer to the serio structure of the PS/2 device
*
* This function frees the irq and disables interrupts for the PS/2 device.
*/ */
static void sxps2_close(struct serio *pserio) static void sxps2_close(struct serio *pserio)
{ {
...@@ -212,24 +221,41 @@ static void sxps2_close(struct serio *pserio) ...@@ -212,24 +221,41 @@ static void sxps2_close(struct serio *pserio)
free_irq(drvdata->irq, drvdata); free_irq(drvdata->irq, drvdata);
} }
/*********************/ /**
/* Device setup code */ * xps2_of_probe - probe method for the PS/2 device.
/*********************/ * @of_dev: pointer to OF device structure
* @match: pointer to the stucture used for matching a device
static int xps2_setup(struct device *dev, struct resource *regs_res, *
struct resource *irq_res) * This function probes the PS/2 device in the device tree.
* It initializes the driver data structure and the hardware.
* It returns 0, if the driver is bound to the PS/2 device, or a negative
* value if there is an error.
*/
static int __devinit xps2_of_probe(struct of_device *ofdev,
const struct of_device_id *match)
{ {
struct resource r_irq; /* Interrupt resources */
struct resource r_mem; /* IO mem resources */
struct xps2data *drvdata; struct xps2data *drvdata;
struct serio *serio; struct serio *serio;
unsigned long remap_size; struct device *dev = &ofdev->dev;
int retval; resource_size_t remap_size, phys_addr;
int error;
dev_info(dev, "Device Tree Probing \'%s\'\n",
ofdev->node->name);
if (!dev) /* Get iospace for the device */
return -EINVAL; error = of_address_to_resource(ofdev->node, 0, &r_mem);
if (error) {
dev_err(dev, "invalid address\n");
return error;
}
if (!regs_res || !irq_res) { /* Get IRQ for the device */
dev_err(dev, "IO resource(s) not found\n"); if (of_irq_to_resource(ofdev->node, 0, &r_irq) == NO_IRQ) {
return -EINVAL; dev_err(dev, "no IRQ found\n");
return -ENODEV;
} }
drvdata = kzalloc(sizeof(struct xps2data), GFP_KERNEL); drvdata = kzalloc(sizeof(struct xps2data), GFP_KERNEL);
...@@ -241,24 +267,23 @@ static int xps2_setup(struct device *dev, struct resource *regs_res, ...@@ -241,24 +267,23 @@ static int xps2_setup(struct device *dev, struct resource *regs_res,
dev_set_drvdata(dev, drvdata); dev_set_drvdata(dev, drvdata);
spin_lock_init(&drvdata->lock); spin_lock_init(&drvdata->lock);
drvdata->irq = irq_res->start; drvdata->irq = r_irq.start;
remap_size = regs_res->end - regs_res->start + 1; phys_addr = r_mem.start;
if (!request_mem_region(regs_res->start, remap_size, DRIVER_NAME)) { remap_size = r_mem.end - r_mem.start + 1;
dev_err(dev, "Couldn't lock memory region at 0x%08X\n", if (!request_mem_region(phys_addr, remap_size, DRIVER_NAME)) {
(unsigned int)regs_res->start); dev_err(dev, "Couldn't lock memory region at 0x%08llX\n",
retval = -EBUSY; (unsigned long long)phys_addr);
error = -EBUSY;
goto failed1; goto failed1;
} }
/* Fill in configuration data and add them to the list */ /* Fill in configuration data and add them to the list */
drvdata->phys_addr = regs_res->start; drvdata->base_address = ioremap(phys_addr, remap_size);
drvdata->remap_size = remap_size;
drvdata->base_address = ioremap(regs_res->start, remap_size);
if (drvdata->base_address == NULL) { if (drvdata->base_address == NULL) {
dev_err(dev, "Couldn't ioremap memory at 0x%08X\n", dev_err(dev, "Couldn't ioremap memory at 0x%08llX\n",
(unsigned int)regs_res->start); (unsigned long long)phys_addr);
retval = -EFAULT; error = -EFAULT;
goto failed2; goto failed2;
} }
...@@ -269,8 +294,9 @@ static int xps2_setup(struct device *dev, struct resource *regs_res, ...@@ -269,8 +294,9 @@ static int xps2_setup(struct device *dev, struct resource *regs_res,
* we have the PS2 in a good state */ * we have the PS2 in a good state */
out_be32(drvdata->base_address + XPS2_SRST_OFFSET, XPS2_SRST_RESET); out_be32(drvdata->base_address + XPS2_SRST_OFFSET, XPS2_SRST_RESET);
dev_info(dev, "Xilinx PS2 at 0x%08X mapped to 0x%p, irq=%d\n", dev_info(dev, "Xilinx PS2 at 0x%08llX mapped to 0x%p, irq=%d\n",
drvdata->phys_addr, drvdata->base_address, drvdata->irq); (unsigned long long)phys_addr, drvdata->base_address,
drvdata->irq);
serio = &drvdata->serio; serio = &drvdata->serio;
serio->id.type = SERIO_8042; serio->id.type = SERIO_8042;
...@@ -280,71 +306,51 @@ static int xps2_setup(struct device *dev, struct resource *regs_res, ...@@ -280,71 +306,51 @@ static int xps2_setup(struct device *dev, struct resource *regs_res,
serio->port_data = drvdata; serio->port_data = drvdata;
serio->dev.parent = dev; serio->dev.parent = dev;
snprintf(serio->name, sizeof(serio->name), snprintf(serio->name, sizeof(serio->name),
"Xilinx XPS PS/2 at %08X", drvdata->phys_addr); "Xilinx XPS PS/2 at %08llX", (unsigned long long)phys_addr);
snprintf(serio->phys, sizeof(serio->phys), snprintf(serio->phys, sizeof(serio->phys),
"xilinxps2/serio at %08X", drvdata->phys_addr); "xilinxps2/serio at %08llX", (unsigned long long)phys_addr);
serio_register_port(serio); serio_register_port(serio);
return 0; /* success */ return 0; /* success */
failed2: failed2:
release_mem_region(regs_res->start, remap_size); release_mem_region(phys_addr, remap_size);
failed1: failed1:
kfree(drvdata); kfree(drvdata);
dev_set_drvdata(dev, NULL); dev_set_drvdata(dev, NULL);
return retval; return error;
}
/***************************/
/* OF Platform Bus Support */
/***************************/
static int __devinit xps2_of_probe(struct of_device *ofdev, const struct
of_device_id * match)
{
struct resource r_irq; /* Interrupt resources */
struct resource r_mem; /* IO mem resources */
int rc = 0;
printk(KERN_INFO "Device Tree Probing \'%s\'\n",
ofdev->node->name);
/* Get iospace for the device */
rc = of_address_to_resource(ofdev->node, 0, &r_mem);
if (rc) {
dev_err(&ofdev->dev, "invalid address\n");
return rc;
}
/* Get IRQ for the device */
rc = of_irq_to_resource(ofdev->node, 0, &r_irq);
if (rc == NO_IRQ) {
dev_err(&ofdev->dev, "no IRQ found\n");
return rc;
}
return xps2_setup(&ofdev->dev, &r_mem, &r_irq);
} }
/**
* xps2_of_remove - unbinds the driver from the PS/2 device.
* @of_dev: pointer to OF device structure
*
* This function is called if a device is physically removed from the system or
* if the driver module is being unloaded. It frees any resources allocated to
* the device.
*/
static int __devexit xps2_of_remove(struct of_device *of_dev) static int __devexit xps2_of_remove(struct of_device *of_dev)
{ {
struct device *dev = &of_dev->dev; struct device *dev = &of_dev->dev;
struct xps2data *drvdata; struct xps2data *drvdata = dev_get_drvdata(dev);
struct resource r_mem; /* IO mem resources */
if (!dev)
return -EINVAL;
drvdata = dev_get_drvdata(dev);
serio_unregister_port(&drvdata->serio); serio_unregister_port(&drvdata->serio);
iounmap(drvdata->base_address); iounmap(drvdata->base_address);
release_mem_region(drvdata->phys_addr, drvdata->remap_size);
/* Get iospace of the device */
if (of_address_to_resource(of_dev->node, 0, &r_mem))
dev_err(dev, "invalid address\n");
else
release_mem_region(r_mem.start, r_mem.end - r_mem.start + 1);
kfree(drvdata); kfree(drvdata);
dev_set_drvdata(dev, NULL); dev_set_drvdata(dev, NULL);
return 0; /* success */ return 0;
} }
/* Match table for of_platform binding */ /* Match table for of_platform binding */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment