aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/nand_base.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mtd/nand/nand_base.c')
-rw-r--r--drivers/mtd/nand/nand_base.c57
1 files changed, 29 insertions, 28 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index f1db0bf9306b..bbe0283433d2 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -59,7 +59,7 @@
59 * The AG-AND chips have nice features for speed improvement, 59 * The AG-AND chips have nice features for speed improvement,
60 * which are not supported yet. Read / program 4 pages in one go. 60 * which are not supported yet. Read / program 4 pages in one go.
61 * 61 *
62 * $Id: nand_base.c,v 1.143 2005/05/19 16:10:22 gleixner Exp $ 62 * $Id: nand_base.c,v 1.145 2005/05/31 20:32:53 gleixner Exp $
63 * 63 *
64 * This program is free software; you can redistribute it and/or modify 64 * This program is free software; you can redistribute it and/or modify
65 * it under the terms of the GNU General Public License version 2 as 65 * it under the terms of the GNU General Public License version 2 as
@@ -167,17 +167,21 @@ static void nand_release_device (struct mtd_info *mtd)
167 167
168 /* De-select the NAND device */ 168 /* De-select the NAND device */
169 this->select_chip(mtd, -1); 169 this->select_chip(mtd, -1);
170 /* Do we have a hardware controller ? */ 170
171 if (this->controller) { 171 if (this->controller) {
172 /* Release the controller and the chip */
172 spin_lock(&this->controller->lock); 173 spin_lock(&this->controller->lock);
173 this->controller->active = NULL; 174 this->controller->active = NULL;
175 this->state = FL_READY;
176 wake_up(&this->controller->wq);
174 spin_unlock(&this->controller->lock); 177 spin_unlock(&this->controller->lock);
178 } else {
179 /* Release the chip */
180 spin_lock(&this->chip_lock);
181 this->state = FL_READY;
182 wake_up(&this->wq);
183 spin_unlock(&this->chip_lock);
175 } 184 }
176 /* Release the chip */
177 spin_lock (&this->chip_lock);
178 this->state = FL_READY;
179 wake_up (&this->wq);
180 spin_unlock (&this->chip_lock);
181} 185}
182 186
183/** 187/**
@@ -753,37 +757,34 @@ static void nand_command_lp (struct mtd_info *mtd, unsigned command, int column,
753 */ 757 */
754static void nand_get_device (struct nand_chip *this, struct mtd_info *mtd, int new_state) 758static void nand_get_device (struct nand_chip *this, struct mtd_info *mtd, int new_state)
755{ 759{
756 struct nand_chip *active = this; 760 struct nand_chip *active;
757 761 spinlock_t *lock;
762 wait_queue_head_t *wq;
758 DECLARE_WAITQUEUE (wait, current); 763 DECLARE_WAITQUEUE (wait, current);
759 764
760 /* 765 lock = (this->controller) ? &this->controller->lock : &this->chip_lock;
761 * Grab the lock and see if the device is available 766 wq = (this->controller) ? &this->controller->wq : &this->wq;
762 */
763retry: 767retry:
768 active = this;
769 spin_lock(lock);
770
764 /* Hardware controller shared among independend devices */ 771 /* Hardware controller shared among independend devices */
765 if (this->controller) { 772 if (this->controller) {
766 spin_lock (&this->controller->lock);
767 if (this->controller->active) 773 if (this->controller->active)
768 active = this->controller->active; 774 active = this->controller->active;
769 else 775 else
770 this->controller->active = this; 776 this->controller->active = this;
771 spin_unlock (&this->controller->lock);
772 } 777 }
773 778 if (active == this && this->state == FL_READY) {
774 if (active == this) { 779 this->state = new_state;
775 spin_lock (&this->chip_lock); 780 spin_unlock(lock);
776 if (this->state == FL_READY) { 781 return;
777 this->state = new_state; 782 }
778 spin_unlock (&this->chip_lock); 783 set_current_state(TASK_UNINTERRUPTIBLE);
779 return; 784 add_wait_queue(wq, &wait);
780 } 785 spin_unlock(lock);
781 } 786 schedule();
782 set_current_state (TASK_UNINTERRUPTIBLE); 787 remove_wait_queue(wq, &wait);
783 add_wait_queue (&active->wq, &wait);
784 spin_unlock (&active->chip_lock);
785 schedule ();
786 remove_wait_queue (&active->wq, &wait);
787 goto retry; 788 goto retry;
788} 789}
789 790