static u16 cpld_read(struct cobalt *cobalt, u32 offset)
{
- return cobalt_bus_read32(cobalt, ADRS(offset));
+ return cobalt_bus_read32(cobalt->bar1, ADRS(offset));
}
static void cpld_write(struct cobalt *cobalt, u32 offset, u16 val)
{
- return cobalt_bus_write32(cobalt, ADRS(offset), val);
+ return cobalt_bus_write32(cobalt->bar1, ADRS(offset), val);
}
static void cpld_info_ver3(struct cobalt *cobalt)
return cobalt_read_bar1(cobalt, COBALT_SYS_STAT_BASE);
}
-#define ADRS_REG (cobalt->bar1 + COBALT_BUS_BAR1_BASE + 0)
-#define LOWER_DATA (cobalt->bar1 + COBALT_BUS_BAR1_BASE + 4)
-#define UPPER_DATA (cobalt->bar1 + COBALT_BUS_BAR1_BASE + 6)
+#define ADRS_REG (bar1 + COBALT_BUS_BAR1_BASE + 0)
+#define LOWER_DATA (bar1 + COBALT_BUS_BAR1_BASE + 4)
+#define UPPER_DATA (bar1 + COBALT_BUS_BAR1_BASE + 6)
-static inline u32 cobalt_bus_read32(struct cobalt *cobalt, u32 bus_adrs)
+static inline u32 cobalt_bus_read32(void __iomem *bar1, u32 bus_adrs)
{
iowrite32(bus_adrs, ADRS_REG);
return ioread32(LOWER_DATA);
}
-static inline void cobalt_bus_write16(struct cobalt *cobalt,
+static inline void cobalt_bus_write16(void __iomem *bar1,
u32 bus_adrs, u16 data)
{
iowrite32(bus_adrs, ADRS_REG);
iowrite16(data, LOWER_DATA);
}
-static inline void cobalt_bus_write32(struct cobalt *cobalt,
+static inline void cobalt_bus_write32(void __iomem *bar1,
u32 bus_adrs, u16 data)
{
iowrite32(bus_adrs, ADRS_REG);
static map_word flash_read16(struct map_info *map, unsigned long offset)
{
- struct cobalt *cobalt = map->virt;
map_word r;
- r.x[0] = cobalt_bus_read32(cobalt, ADRS(offset));
+ r.x[0] = cobalt_bus_read32(map->virt, ADRS(offset));
if (offset & 0x2)
r.x[0] >>= 16;
else
static void flash_write16(struct map_info *map, const map_word datum,
unsigned long offset)
{
- struct cobalt *cobalt = map->virt;
u16 data = (u16)datum.x[0];
- cobalt_bus_write16(cobalt, ADRS(offset), data);
+ cobalt_bus_write16(map->virt, ADRS(offset), data);
}
static void flash_copy_from(struct map_info *map, void *to,
unsigned long from, ssize_t len)
{
- struct cobalt *cobalt = map->virt;
u32 src = from;
u8 *dest = to;
u32 data;
while (len) {
- data = cobalt_bus_read32(cobalt, ADRS(src));
+ data = cobalt_bus_read32(map->virt, ADRS(src));
do {
*dest = data >> (8 * (src & 3));
src++;
static void flash_copy_to(struct map_info *map, unsigned long to,
const void *from, ssize_t len)
{
- struct cobalt *cobalt = map->virt;
const u8 *src = from;
u32 dest = to;
- cobalt_info("%s: offset 0x%x: length %zu\n", __func__, dest, len);
+ pr_info("%s: offset 0x%x: length %zu\n", __func__, dest, len);
while (len) {
u16 data = 0xffff;
len--;
} while (len && (dest % 2));
- cobalt_bus_write16(cobalt, ADRS(dest - 2), data);
+ cobalt_bus_write16(map->virt, ADRS(dest - 2), data);
}
}
struct mtd_info *mtd;
BUG_ON(!map_bankwidth_supported(map->bankwidth));
- map->virt = cobalt;
+ map->virt = cobalt->bar1;
map->read = flash_read16;
map->write = flash_write16;
map->copy_from = flash_copy_from;