kernel: fix cryptodev with kernel >= 2.6.35
[openwrt.git] / target / linux / ar71xx / files / drivers / mtd / maps / ar91xx_flash.c
index e83a147..51ba7f5 100644 (file)
@@ -22,7 +22,7 @@
 #include <linux/io.h>
 
 #include <asm/mach-ar71xx/ar71xx.h>
-#include <asm/mach-ar71xx/platform.h>
+#include <asm/mach-ar71xx/ar91xx_flash.h>
 
 #define DRV_NAME       "ar91xx-flash"
 
@@ -60,6 +60,41 @@ static void ar91xx_flash_write(struct map_info *map, map_word d,
        mb();
 }
 
+static map_word ar91xx_flash_read_lock(struct map_info *map, unsigned long ofs)
+{
+       map_word ret;
+
+       ar71xx_flash_acquire();
+       ret = ar91xx_flash_read(map, ofs);
+       ar71xx_flash_release();
+
+       return ret;
+}
+
+static void ar91xx_flash_write_lock(struct map_info *map, map_word d,
+                              unsigned long ofs)
+{
+       ar71xx_flash_acquire();
+       ar91xx_flash_write(map, d, ofs);
+       ar71xx_flash_release();
+}
+
+static void ar91xx_flash_copy_from_lock(struct map_info *map, void *to,
+                                       unsigned long from, ssize_t len)
+{
+       ar71xx_flash_acquire();
+       inline_map_copy_from(map, to, from, len);
+       ar71xx_flash_release();
+}
+
+static void ar91xx_flash_copy_to_lock(struct map_info *map, unsigned long to,
+                                     const void *from, ssize_t len)
+{
+       ar71xx_flash_acquire();
+       inline_map_copy_to(map, to, from, len);
+       ar71xx_flash_release();
+}
+
 static int ar91xx_flash_remove(struct platform_device *pdev)
 {
        struct ar91xx_flash_platform_data *pdata;
@@ -152,8 +187,15 @@ static int ar91xx_flash_probe(struct platform_device *pdev)
        }
 
        simple_map_init(&info->map);
-       info->map.read = ar91xx_flash_read;
-       info->map.write = ar91xx_flash_write;
+       if (pdata->is_shared) {
+               info->map.read = ar91xx_flash_read_lock;
+               info->map.write = ar91xx_flash_write_lock;
+               info->map.copy_from = ar91xx_flash_copy_from_lock;
+               info->map.copy_to = ar91xx_flash_copy_to_lock;
+       } else {
+               info->map.read = ar91xx_flash_read;
+               info->map.write = ar91xx_flash_write;
+       }
 
        probe_type = rom_probe_types;
        for (; info->mtd == NULL && *probe_type != NULL; probe_type++)
@@ -185,7 +227,7 @@ static int ar91xx_flash_probe(struct platform_device *pdev)
        add_mtd_device(info->mtd);
        return 0;
 
- err_out:
+err_out:
        ar91xx_flash_remove(pdev);
        return err;
 }
@@ -204,7 +246,7 @@ static int ar91xx_flash_suspend(struct platform_device *dev, pm_message_t state)
 
        return 0;
 
- fail:
+fail:
        if (info->mtd->suspend) {
                BUG_ON(!info->mtd->resume);
                info->mtd->resume(info->mtd);
This page took 0.025531 seconds and 4 git commands to generate.