Commit b11a8558 authored by Jens Axboe's avatar Jens Axboe Committed by Linus Torvalds

[PATCH] blk API update (and bug fix) to CDU535 cdrom driver

This is a lot better than what is there know.

From: Felipe W Damasio <felipewd@terra.com.br>

 - cli-sti removal
 - blk API update
 - set_current_state
 - Remove 'panic' line.

.. and we can now remove the BROKEN_ON_SMP Kconfig annotation.
parent ee4cdfcc
...@@ -267,7 +267,7 @@ config CDU31A ...@@ -267,7 +267,7 @@ config CDU31A
config CDU535 config CDU535
tristate "Sony CDU535 CDROM support" tristate "Sony CDU535 CDROM support"
depends on CD_NO_IDESCSI && BROKEN_ON_SMP depends on CD_NO_IDESCSI
---help--- ---help---
This is the driver for the older Sony CDU-535 and CDU-531 CD-ROM This is the driver for the older Sony CDU-535 and CDU-531 CD-ROM
drives. Please read the file <file:Documentation/cdrom/sonycd535>. drives. Please read the file <file:Documentation/cdrom/sonycd535>.
......
...@@ -36,6 +36,10 @@ ...@@ -36,6 +36,10 @@
* module_init & module_exit. * module_init & module_exit.
* Torben Mathiasen <tmm@image.dk> * Torben Mathiasen <tmm@image.dk>
* *
* September 2003 - Fix SMP support by removing cli/sti calls.
* Using spinlocks with a wait_queue instead.
* Felipe Damasio <felipewd@terra.com.br>
*
* Things to do: * Things to do:
* - handle errors and status better, put everything into a single word * - handle errors and status better, put everything into a single word
* - use interrupts (code mostly there, but a big hole still missing) * - use interrupts (code mostly there, but a big hole still missing)
...@@ -340,10 +344,14 @@ sony_sleep(void) ...@@ -340,10 +344,14 @@ sony_sleep(void)
if (sony535_irq_used <= 0) { /* poll */ if (sony535_irq_used <= 0) { /* poll */
yield(); yield();
} else { /* Interrupt driven */ } else { /* Interrupt driven */
cli(); DEFINE_WAIT(wait);
spin_lock_irq(&sonycd535_lock);
enable_interrupts(); enable_interrupts();
interruptible_sleep_on(&cdu535_irq_wait); prepare_to_wait(&cdu535_irq_wait, &wait, TASK_INTERRUPTIBLE);
sti(); spin_unlock_irq(&sonycd535_lock);
schedule();
finish_wait(&cdu535_irq_wait, &wait);
} }
} }
...@@ -804,14 +812,14 @@ do_cdu535_request(request_queue_t * q) ...@@ -804,14 +812,14 @@ do_cdu535_request(request_queue_t * q)
block = req->sector; block = req->sector;
nsect = req->nr_sectors; nsect = req->nr_sectors;
if (!(req->flags & REQ_CMD)) if (!blk_fs_request(req)) {
continue; /* FIXME */ end_request(req, 0);
continue;
}
if (rq_data_dir(req) == WRITE) { if (rq_data_dir(req) == WRITE) {
end_request(req, 0); end_request(req, 0);
continue; continue;
} }
if (rq_data_dir(req) != READ)
panic("Unknown SONY CD cmd");
/* /*
* If the block address is invalid or the request goes beyond * If the block address is invalid or the request goes beyond
* the end of the media, return an error. * the end of the media, return an error.
...@@ -888,8 +896,10 @@ do_cdu535_request(request_queue_t * q) ...@@ -888,8 +896,10 @@ do_cdu535_request(request_queue_t * q)
} }
if (readStatus == BAD_STATUS) { if (readStatus == BAD_STATUS) {
/* Sleep for a while, then retry */ /* Sleep for a while, then retry */
current->state = TASK_INTERRUPTIBLE; set_current_state(TASK_INTERRUPTIBLE);
spin_unlock_irq(&sonycd535_lock);
schedule_timeout(RETRY_FOR_BAD_STATUS*HZ/10); schedule_timeout(RETRY_FOR_BAD_STATUS*HZ/10);
spin_lock_irq(&sonycd535_lock);
} }
#if DEBUG > 0 #if DEBUG > 0
printk(CDU535_MESSAGE_NAME printk(CDU535_MESSAGE_NAME
...@@ -1473,7 +1483,7 @@ static int __init sony535_init(void) ...@@ -1473,7 +1483,7 @@ static int __init sony535_init(void)
/* look for the CD-ROM, follows the procedure in the DOS driver */ /* look for the CD-ROM, follows the procedure in the DOS driver */
inb(select_unit_reg); inb(select_unit_reg);
/* wait for 40 18 Hz ticks (reverse-engineered from DOS driver) */ /* wait for 40 18 Hz ticks (reverse-engineered from DOS driver) */
current->state = TASK_INTERRUPTIBLE; set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout((HZ+17)*40/18); schedule_timeout((HZ+17)*40/18);
inb(result_reg); inb(result_reg);
......
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