Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 21467
b: refs/heads/master
c: db33f9b
h: refs/heads/master
i:
  21465: 69797fd
  21463: 1fce2e1
v: v3
  • Loading branch information
David S. Miller committed Mar 20, 2006
1 parent 8231cc1 commit d301fd6
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c7f81d42d3d07115a7b92e36ade0f3167f75bc55
refs/heads/master: db33f9bc09aaf68db7866374f9219c676787b4a2
52 changes: 36 additions & 16 deletions trunk/drivers/serial/sunhv.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,12 @@ static struct tty_struct *receive_chars(struct uart_port *port, struct pt_regs *

static void transmit_chars(struct uart_port *port)
{
struct circ_buf *xmit = &port->info->xmit;
struct circ_buf *xmit;

if (!port->info)
return;

xmit = &port->info->xmit;
if (uart_circ_empty(xmit) || uart_tx_stopped(port))
return;

Expand Down Expand Up @@ -452,8 +456,6 @@ static unsigned int __init get_interrupt(void)
return sun4v_vdev_device_interrupt(node);
}

static u32 sunhv_irq;

static int __init sunhv_init(void)
{
struct uart_port *port;
Expand All @@ -462,35 +464,33 @@ static int __init sunhv_init(void)
if (tlb_type != hypervisor)
return -ENODEV;

sunhv_irq = get_interrupt();
if (!sunhv_irq)
return -ENODEV;

port = kmalloc(sizeof(struct uart_port), GFP_KERNEL);
if (unlikely(!port))
return -ENOMEM;

memset(port, 0, sizeof(struct uart_port));

port->line = 0;
port->ops = &sunhv_pops;
port->type = PORT_SUNHV;
port->uartclk = ( 29491200 / 16 ); /* arbitrary */

if (request_irq(sunhv_irq, sunhv_interrupt,
SA_SHIRQ, "serial(sunhv)", port)) {
printk("sunhv: Cannot get IRQ %x\n", sunhv_irq);
/* Set this just to make uart_configure_port() happy. */
port->membase = (unsigned char __iomem *) __pa(port);

port->irq = get_interrupt();
if (!port->irq) {
kfree(port);
return -ENODEV;
}

printk("SUNHV: SUN4V virtual console, IRQ %s\n",
__irq_itoa(sunhv_irq));

sunhv_reg.minor = sunserial_current_minor;
sunhv_reg.nr = 1;

ret = uart_register_driver(&sunhv_reg);
if (ret < 0) {
free_irq(sunhv_irq, up);
printk(KERN_ERR "SUNHV: uart_register_driver() failed %d\n",
ret);
kfree(port);

return ret;
Expand All @@ -502,7 +502,26 @@ static int __init sunhv_init(void)

sunhv_port = port;

uart_add_one_port(&sunhv_reg, port);
ret = uart_add_one_port(&sunhv_reg, port);
if (ret < 0) {
printk(KERN_ERR "SUNHV: uart_add_one_port() failed %d\n", ret);
sunserial_current_minor -= 1;
uart_unregister_driver(&sunhv_reg);
kfree(port);
sunhv_port = NULL;
return -ENODEV;
}

if (request_irq(port->irq, sunhv_interrupt,
SA_SHIRQ, "serial(sunhv)", port)) {
printk(KERN_ERR "sunhv: Cannot register IRQ\n");
uart_remove_one_port(&sunhv_reg, port);
sunserial_current_minor -= 1;
uart_unregister_driver(&sunhv_reg);
kfree(port);
sunhv_port = NULL;
return -ENODEV;
}

return 0;
}
Expand All @@ -513,8 +532,9 @@ static void __exit sunhv_exit(void)

BUG_ON(!port);

free_irq(port->irq, port);

uart_remove_one_port(&sunhv_reg, port);
free_irq(sunhv_irq, port);
sunserial_current_minor -= 1;

uart_unregister_driver(&sunhv_reg);
Expand Down

0 comments on commit d301fd6

Please sign in to comment.