1 Index: linux-2.6.21.7/drivers/mtd/chips/cfi_cmdset_0001.c
2 ===================================================================
3 --- linux-2.6.21.7.orig/drivers/mtd/chips/cfi_cmdset_0001.c
4 +++ linux-2.6.21.7/drivers/mtd/chips/cfi_cmdset_0001.c
5 @@ -919,7 +919,7 @@ static void __xipram xip_enable(struct m
7 static int __xipram xip_wait_for_operation(
8 struct map_info *map, struct flchip *chip,
9 - unsigned long adr, unsigned int chip_op_time )
10 + unsigned long adr, int *chip_op_time )
12 struct cfi_private *cfi = map->fldrv_priv;
13 struct cfi_pri_intelext *cfip = cfi->cmdset_priv;
14 @@ -928,7 +928,7 @@ static int __xipram xip_wait_for_operati
15 flstate_t oldstate, newstate;
17 start = xip_currtime();
18 - usec = chip_op_time * 8;
19 + usec = *chip_op_time * 8;
23 @@ -1038,8 +1038,8 @@ static int __xipram xip_wait_for_operati
24 #define XIP_INVAL_CACHED_RANGE(map, from, size) \
25 INVALIDATE_CACHED_RANGE(map, from, size)
27 -#define INVAL_CACHE_AND_WAIT(map, chip, cmd_adr, inval_adr, inval_len, usec) \
28 - xip_wait_for_operation(map, chip, cmd_adr, usec)
29 +#define INVAL_CACHE_AND_WAIT(map, chip, cmd_adr, inval_adr, inval_len, p_usec) \
30 + xip_wait_for_operation(map, chip, cmd_adr, p_usec)
34 @@ -1051,65 +1051,65 @@ static int __xipram xip_wait_for_operati
35 static int inval_cache_and_wait_for_operation(
36 struct map_info *map, struct flchip *chip,
37 unsigned long cmd_adr, unsigned long inval_adr, int inval_len,
38 - unsigned int chip_op_time)
41 struct cfi_private *cfi = map->fldrv_priv;
42 map_word status, status_OK = CMD(0x80);
43 - int chip_state = chip->state;
44 - unsigned int timeo, sleep_time;
45 + int z, chip_state = chip->state;
46 + unsigned long timeo;
48 spin_unlock(chip->mutex);
50 INVALIDATE_CACHED_RANGE(map, inval_adr, inval_len);
52 + cfi_udelay(*chip_op_time);
53 spin_lock(chip->mutex);
55 - /* set our timeout to 8 times the expected delay */
56 - timeo = chip_op_time * 8;
59 - sleep_time = chip_op_time / 2;
60 + timeo = *chip_op_time * 8 * HZ / 1000000;
67 + if (chip->state != chip_state) {
68 + /* Someone's suspended the operation: sleep */
69 + DECLARE_WAITQUEUE(wait, current);
71 + set_current_state(TASK_UNINTERRUPTIBLE);
72 + add_wait_queue(&chip->wq, &wait);
73 + spin_unlock(chip->mutex);
75 + remove_wait_queue(&chip->wq, &wait);
76 + timeo = jiffies + (HZ / 2); /* FIXME */
77 + spin_lock(chip->mutex);
81 status = map_read(map, cmd_adr);
82 if (map_word_andequal(map, status, status_OK, status_OK))
86 + /* OK Still waiting */
87 + if (time_after(jiffies, timeo)) {
88 map_write(map, CMD(0x70), cmd_adr);
89 chip->state = FL_STATUS;
93 - /* OK Still waiting. Drop the lock, wait a while and retry. */
94 + /* Latency issues. Drop the lock, wait a while and retry */
96 spin_unlock(chip->mutex);
97 - if (sleep_time >= 1000000/HZ) {
99 - * Half of the normal delay still remaining
100 - * can be performed with a sleeping delay instead
103 - msleep(sleep_time/1000);
104 - timeo -= sleep_time;
105 - sleep_time = 1000000/HZ;
112 spin_lock(chip->mutex);
114 - while (chip->state != chip_state) {
115 - /* Someone's suspended the operation: sleep */
116 - DECLARE_WAITQUEUE(wait, current);
117 - set_current_state(TASK_UNINTERRUPTIBLE);
118 - add_wait_queue(&chip->wq, &wait);
119 - spin_unlock(chip->mutex);
121 - remove_wait_queue(&chip->wq, &wait);
122 - spin_lock(chip->mutex);
127 + if (!--(*chip_op_time))
132 /* Done and happy. */
133 chip->state = FL_STATUS;
135 @@ -1118,7 +1118,8 @@ static int inval_cache_and_wait_for_oper
138 #define WAIT_TIMEOUT(map, chip, adr, udelay) \
139 - INVAL_CACHE_AND_WAIT(map, chip, adr, 0, 0, udelay);
140 + ({ int __udelay = (udelay); \
141 + INVAL_CACHE_AND_WAIT(map, chip, adr, 0, 0, &__udelay); })
144 static int do_point_onechip (struct map_info *map, struct flchip *chip, loff_t adr, size_t len)
145 @@ -1342,7 +1343,7 @@ static int __xipram do_write_oneword(str
147 ret = INVAL_CACHE_AND_WAIT(map, chip, adr,
148 adr, map_bankwidth(map),
149 - chip->word_write_time);
150 + &chip->word_write_time);
152 xip_enable(map, chip, adr);
153 printk(KERN_ERR "%s: word write error (status timeout)\n", map->name);
154 @@ -1579,7 +1580,7 @@ static int __xipram do_write_buffer(stru
156 ret = INVAL_CACHE_AND_WAIT(map, chip, cmd_adr,
158 - chip->buffer_write_time);
159 + &chip->buffer_write_time);
161 map_write(map, CMD(0x70), cmd_adr);
162 chip->state = FL_STATUS;
163 @@ -1714,7 +1715,7 @@ static int __xipram do_erase_oneblock(st
165 ret = INVAL_CACHE_AND_WAIT(map, chip, adr,
168 + &chip->erase_time);
170 map_write(map, CMD(0x70), adr);
171 chip->state = FL_STATUS;