aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/amazon/patches-2.6.30/160-cfi-swap.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2009-11-28 22:17:37 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2009-11-28 22:17:37 +0000
commit2ee2679ac97098e9cf394ca4e78d2cc6ac5fad85 (patch)
treea94ddbd1439f5a86a7e15ba5c920a1ce039636ba /target/linux/amazon/patches-2.6.30/160-cfi-swap.patch
parent9714c8b6425d6fe28b7aac6fbdcb207c05409835 (diff)
downloadupstream-2ee2679ac97098e9cf394ca4e78d2cc6ac5fad85.tar.gz
upstream-2ee2679ac97098e9cf394ca4e78d2cc6ac5fad85.tar.bz2
upstream-2ee2679ac97098e9cf394ca4e78d2cc6ac5fad85.zip
Add kernel 2.6.30 support
The device is booting and Ethernet is working, but nothing more was tested. SVN-Revision: 18589
Diffstat (limited to 'target/linux/amazon/patches-2.6.30/160-cfi-swap.patch')
-rw-r--r--target/linux/amazon/patches-2.6.30/160-cfi-swap.patch56
1 files changed, 56 insertions, 0 deletions
diff --git a/target/linux/amazon/patches-2.6.30/160-cfi-swap.patch b/target/linux/amazon/patches-2.6.30/160-cfi-swap.patch
new file mode 100644
index 0000000000..4809fccd8d
--- /dev/null
+++ b/target/linux/amazon/patches-2.6.30/160-cfi-swap.patch
@@ -0,0 +1,56 @@
+--- a/drivers/mtd/chips/cfi_cmdset_0002.c
++++ b/drivers/mtd/chips/cfi_cmdset_0002.c
+@@ -1090,6 +1090,9 @@ static int __xipram do_write_oneword(str
+ int retry_cnt = 0;
+
+ adr += chip->start;
++#ifdef CONFIG_AMAZON
++ adr ^= 2;
++#endif
+
+ spin_lock(chip->mutex);
+ ret = get_chip(map, chip, adr, FL_WRITING);
+@@ -1372,7 +1375,11 @@ static int __xipram do_write_buffer(stru
+ z = 0;
+ while(z < words * map_bankwidth(map)) {
+ datum = map_word_load(map, buf);
++#ifdef CONFIG_AMAZON
++ map_write(map, datum, (adr + z) ^ 0x2);
++#else
+ map_write(map, datum, adr + z);
++#endif
+
+ z += map_bankwidth(map);
+ buf += map_bankwidth(map);
+@@ -1617,6 +1624,9 @@ static int __xipram do_erase_oneblock(st
+ int ret = 0;
+
+ adr += chip->start;
++#ifdef CONFIG_AMAZON
++ adr ^= 2;
++#endif
+
+ spin_lock(chip->mutex);
+ ret = get_chip(map, chip, adr, FL_ERASING);
+@@ -1745,6 +1755,10 @@ static int do_atmel_lock(struct map_info
+ struct cfi_private *cfi = map->fldrv_priv;
+ int ret;
+
++#ifdef CONFIG_AMAZON
++ adr ^= 2;
++#endif
++
+ spin_lock(chip->mutex);
+ ret = get_chip(map, chip, adr + chip->start, FL_LOCKING);
+ if (ret)
+@@ -1781,6 +1795,10 @@ static int do_atmel_unlock(struct map_in
+ struct cfi_private *cfi = map->fldrv_priv;
+ int ret;
+
++#ifdef CONFIG_AMAZON
++ adr ^= 2;
++#endif
++
+ spin_lock(chip->mutex);
+ ret = get_chip(map, chip, adr + chip->start, FL_UNLOCKING);
+ if (ret)