1 // SPDX-License-Identifier: GPL-2.0
3 * Intel IXP4xx OF physmap add-on
4 * Copyright (C) 2019 Linus Walleij <linus.walleij@linaro.org>
6 * Based on the ixp4xx.c map driver, originally written by:
8 * Deepak Saxena <dsaxena@mvista.com>
9 * Copyright (C) 2002 Intel Corporation
10 * Copyright (C) 2003-2004 MontaVista Software, Inc.
12 #include <linux/export.h>
14 #include <linux/platform_device.h>
15 #include <linux/mtd/map.h>
16 #include <linux/mtd/xip.h>
17 #include "physmap-ixp4xx.h"
20 * Read/write a 16 bit word from flash address 'addr'.
22 * When the cpu is in little-endian mode it swizzles the address lines
23 * ('address coherency') so we need to undo the swizzling to ensure commands
24 * and the like end up on the correct flash address.
26 * To further complicate matters, due to the way the expansion bus controller
27 * handles 32 bit reads, the byte stream ABCD is stored on the flash as:
34 * This means that on LE systems each 16 bit word must be swapped. Note that
35 * this requires CONFIG_MTD_CFI_BE_BYTE_SWAP to be enabled to 'unswap' the CFI
36 * data and other flash commands which are always in D7-D0.
38 #ifndef CONFIG_CPU_BIG_ENDIAN
40 static inline u16 flash_read16(void __iomem *addr)
42 return be16_to_cpu(__raw_readw((void __iomem *)((unsigned long)addr ^ 0x2)));
45 static inline void flash_write16(u16 d, void __iomem *addr)
47 __raw_writew(cpu_to_be16(d), (void __iomem *)((unsigned long)addr ^ 0x2));
50 #define BYTE0(h) ((h) & 0xFF)
51 #define BYTE1(h) (((h) >> 8) & 0xFF)
55 static inline u16 flash_read16(const void __iomem *addr)
57 return __raw_readw(addr);
60 static inline void flash_write16(u16 d, void __iomem *addr)
62 __raw_writew(d, addr);
65 #define BYTE0(h) (((h) >> 8) & 0xFF)
66 #define BYTE1(h) ((h) & 0xFF)
69 static map_word ixp4xx_read16(struct map_info *map, unsigned long ofs)
73 val.x[0] = flash_read16(map->virt + ofs);
78 * The IXP4xx expansion bus only allows 16-bit wide acceses
79 * when attached to a 16-bit wide device (such as the 28F128J3A),
80 * so we can't just memcpy_fromio().
82 static void ixp4xx_copy_from(struct map_info *map, void *to,
83 unsigned long from, ssize_t len)
86 void __iomem *src = map->virt + from;
92 *dest++ = BYTE1(flash_read16(src-1));
98 u16 data = flash_read16(src);
99 *dest++ = BYTE0(data);
100 *dest++ = BYTE1(data);
106 *dest++ = BYTE0(flash_read16(src));
109 static void ixp4xx_write16(struct map_info *map, map_word d, unsigned long adr)
111 flash_write16(d.x[0], map->virt + adr);
114 int of_flash_probe_ixp4xx(struct platform_device *pdev,
115 struct device_node *np,
116 struct map_info *map)
118 struct device *dev = &pdev->dev;
120 /* Multiplatform guard */
121 if (!of_device_is_compatible(np, "intel,ixp4xx-flash"))
124 map->read = ixp4xx_read16;
125 map->write = ixp4xx_write16;
126 map->copy_from = ixp4xx_copy_from;
129 dev_info(dev, "initialized Intel IXP4xx-specific physmap control\n");