summaryrefslogtreecommitdiff
path: root/drivers/mtd/spi-nor/aspeed-smc.c
blob: ed55f283b619fb653500c67554553e0101a406cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
/*
 * ASPEED Static Memory Controller driver
 * Copyright 2016 IBM Corporation
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 *
 */

/* See comment by aspeed_smc_from_fifo */
#ifdef CONFIG_ARM
#define IO_SPACE_LIMIT (~0UL)
#endif

#include <linux/bug.h>
#include <linux/device.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <linux/mtd/spi-nor.h>
#include <linux/of.h>
#include <linux/of_platform.h>
#include <linux/sysfs.h>

/*
 * On the arm architecture, as of Linux version 4.3, memcpy_fromio
 * stutters discarding some of the bytes read if the destination is
 * unaligned, so we can't use it for reading from a fifo to a buffer
 * of unknown alignment.  Instead use the ins (l, w, b) family
 * to read from the fifo.   However, ARM tries to hide io port
 * accesses from drivers unless there is a PCMCIA or PCI device, so
 * we define the limit before all include files.  There is a
 * check in probe to make sure this will work, as long as the
 * architecture uses an identity iomap.
 */

static void aspeed_smc_from_fifo(void *buf, const void __iomem *iop, size_t len)
{
	unsigned long io = (__force unsigned long)iop;

	if (!len)
		return;

	/* Expect a 4 byte input port.  Otherwise just read bytes */
	if (unlikely(io & 3)) {
		insb(io, buf, len);
		return;
	}

	/* Align target to word: first byte then half word */
	if ((unsigned long)buf & 1) {
		*(u8 *)buf = inb(io);
		buf++;
		len--;
	}
	if (((unsigned long)buf & 2) && (len >= 2)) {
		*(u16 *)buf = inw(io);
		buf += 2;
		len -= 2;
	}
	/* Transfer words, then remaining halfword and remaining byte */
	if (len >= 4) {
		insl(io, buf, len >> 2);
		buf += len & ~3;
	}
	if (len & 2) {
		*(u16 *)buf = inw(io);
		buf += 2;
	}
	if (len & 1) {
		*(u8 *)buf = inb(io);
	}
}

static void aspeed_smc_to_fifo(void __iomem *iop, const void *buf, size_t len)
{
	unsigned long io = (__force unsigned long)iop;

	if (!len)
		return;

	/* Expect a 4 byte output port.  Otherwise just write bytes */
	if (io & 3) {
		outsb(io, buf, len);
		return;
	}

	/* Align target to word: first byte then half word */
	if ((unsigned long)buf & 1) {
		outb(*(u8 *)buf, io);
		buf++;
		len--;
	}
	if (((unsigned long)buf & 2) && (len >= 2)) {
		outw(*(u16 *)buf, io);
		buf += 2;
		len -= 2;
	}
	/* Transfer words, then remaining halfword and remaining byte */
	if (len >= 4) {
		outsl(io, buf, len >> 2);
		buf += len & ~(size_t)3;
	}
	if (len & 2) {
		outw(*(u16 *)buf, io);
		buf += 2;
	}
	if (len & 1) {
		outb(*(u8 *)buf, io);
	}
}

enum smc_flash_type {
	smc_type_nor = 0,	/* controller connected to nor flash */
	smc_type_nand = 1,	/* controller connected to nand flash */
	smc_type_spi = 2,	/* controller connected to spi flash */
};

struct aspeed_smc_info {
	u8 nce;			/* number of chip enables */
	u8 maxwidth;		/* max width of spi bus */
	bool hasdma;		/* has dma engine */
	bool hastype;		/* type shift for ce 0 in cfg reg */
	u8 we0;			/* we shift for ce 0 in cfg reg */
	u8 ctl0;		/* offset in regs of ctl for ce 0 */
	u8 cfg;			/* offset in regs of cfg */
	u8 time;		/* offset in regs of timing */
	u8 misc;		/* offset in regs of misc settings */
};

static struct aspeed_smc_info fmc_info = {
	.nce = 5,
	.maxwidth = 4,
	.hasdma = true,
	.hastype = true,
	.we0 = 16,
	.ctl0 = 0x10,
	.cfg = 0x00,
	.time = 0x54,
	.misc = 0x50,
};

static struct aspeed_smc_info smc_info = {
	.nce = 1,
	.maxwidth = 2,
	.hasdma = false,
	.hastype = false,
	.we0 = 0,
	.ctl0 = 0x04,
	.cfg = 0x00,
	.time = 0x14,
	.misc = 0x10,
};

enum smc_ctl_reg_value {
	smc_base,		/* base value without mode for other commands */
	smc_read,		/* command reg for (maybe fast) reads */
	smc_write,		/* command reg for writes with timings */
	smc_num_ctl_reg_values	/* last value to get count of commands */
};

struct aspeed_smc_controller;

struct aspeed_smc_chip {
	struct aspeed_smc_controller *controller;
	__le32 __iomem *ctl;			/* control register */
	void __iomem *base;			/* base of chip window */
	__le32 ctl_val[smc_num_ctl_reg_values];	/* controls with timing */
	enum smc_flash_type type;		/* what type of flash */
	struct spi_nor nor;
};

struct aspeed_smc_controller {
	struct mutex mutex;			/* controller access mutex */
	const struct aspeed_smc_info *info;	/* type info of controller */
	void __iomem *regs;			/* controller registers */
	struct aspeed_smc_chip *chips[0];	/* attached chips */
};

#define CONTROL_SPI_AAF_MODE BIT(31)
#define CONTROL_SPI_IO_MODE_MASK GENMASK(30, 28)
#define CONTROL_SPI_IO_DUAL_DATA BIT(29)
#define CONTROL_SPI_IO_DUAL_ADDR_DATA (BIT(29) | BIT(28))
#define CONTROL_SPI_IO_QUAD_DATA BIT(30)
#define CONTROL_SPI_IO_QUAD_ADDR_DATA (BIT(30) | BIT(28))
#define CONTROL_SPI_CE_INACTIVE_SHIFT 24
#define CONTROL_SPI_CE_INACTIVE_MASK GENMASK(27, CONTROL_SPI_CE_INACTIVE_SHIFT)
/* 0 = 16T ... 15 = 1T   T=HCLK */
#define CONTROL_SPI_COMMAND_SHIFT 16
#define CONTROL_SPI_DUMMY_CYCLE_COMMAND_OUTPUT BIT(15)
#define CONTROL_SPI_IO_DUMMY_CYCLES_HI BIT(14)
#define CONTROL_SPI_IO_DUMMY_CYCLES_HI_SHIFT (14 - 2)
#define CONTROL_SPI_IO_ADDRESS_4B BIT(13) /* FMC, LEGACY */
#define CONTROL_SPI_CLK_DIV4 BIT(13) /* BIOS */
#define CONTROL_SPI_RW_MERGE BIT(12)
#define CONTROL_SPI_IO_DUMMY_CYCLES_LO_SHIFT 6
#define CONTROL_SPI_IO_DUMMY_CYCLES_LO GENMASK(7, CONTROL_SPI_IO_DUMMY_CYCLES_LO_SHIFT)
#define CONTROL_SPI_IO_DUMMY_CYCLES_MASK (CONTROL_SPI_IO_DUMMY_CYCLES_HI | \
					  CONTROL_SPI_IO_DUMMY_CYCLES_LO)
#define CONTROL_SPI_CLOCK_FREQ_SEL_SHIFT 8
#define CONTROL_SPI_CLOCK_FREQ_SEL_MASK GENMASK(11, CONTROL_SPI_CLOCK_FREQ_SEL_SHIFT)
#define CONTROL_SPI_LSB_FIRST BIT(5)
#define CONTROL_SPI_CLOCK_MODE_3 BIT(4)
#define CONTROL_SPI_IN_DUAL_DATA BIT(3)
#define CONTROL_SPI_CE_STOP_ACTIVE_CONTROL BIT(2)
#define CONTROL_SPI_COMMAND_MODE_MASK GENMASK(1, 0)
#define CONTROL_SPI_COMMAND_MODE_NORMAL (0)
#define CONTROL_SPI_COMMAND_MODE_FREAD (1)
#define CONTROL_SPI_COMMAND_MODE_WRITE (2)
#define CONTROL_SPI_COMMAND_MODE_USER (3)

#define CONTROL_SPI_KEEP_MASK (CONTROL_SPI_AAF_MODE | \
	CONTROL_SPI_CE_INACTIVE_MASK | CONTROL_SPI_IO_ADDRESS_4B | \
	CONTROL_SPI_IO_DUMMY_CYCLES_MASK | CONTROL_SPI_CLOCK_FREQ_SEL_MASK | \
	CONTROL_SPI_LSB_FIRST | CONTROL_SPI_CLOCK_MODE_3)

#define CONTROL_SPI_CLK_DIV4 BIT(13) /* BIOS */

static u32 spi_control_fill_opcode(u8 opcode)
{
	return ((u32)(opcode)) << CONTROL_SPI_COMMAND_SHIFT;
}

static void aspeed_smc_start_user(struct spi_nor *nor)
{
	struct aspeed_smc_chip *chip = nor->priv;
	u32 ctl = chip->ctl_val[smc_base];

	mutex_lock(&chip->controller->mutex);

	ctl |= CONTROL_SPI_COMMAND_MODE_USER |
		CONTROL_SPI_CE_STOP_ACTIVE_CONTROL;
	writel(ctl, chip->ctl);

	ctl &= ~CONTROL_SPI_CE_STOP_ACTIVE_CONTROL;
	writel(ctl, chip->ctl);
}

static void aspeed_smc_stop_user(struct spi_nor *nor)
{
	struct aspeed_smc_chip *chip = nor->priv;

	u32 ctl = chip->ctl_val[smc_read];
	u32 ctl2 = ctl | CONTROL_SPI_COMMAND_MODE_USER |
		CONTROL_SPI_CE_STOP_ACTIVE_CONTROL;

	writel(ctl2, chip->ctl);	/* stop user CE control */
	writel(ctl, chip->ctl);		/* default to fread or read */

	mutex_unlock(&chip->controller->mutex);
}

static int aspeed_smc_read_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len)
{
	struct aspeed_smc_chip *chip = nor->priv;

	aspeed_smc_start_user(nor);
	aspeed_smc_to_fifo(chip->base, &opcode, 1);
	aspeed_smc_from_fifo(buf, chip->base, len);
	aspeed_smc_stop_user(nor);

	return 0;
}

static int aspeed_smc_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf,
				int len)
{
	struct aspeed_smc_chip *chip = nor->priv;

	aspeed_smc_start_user(nor);
	aspeed_smc_to_fifo(chip->base, &opcode, 1);
	aspeed_smc_to_fifo(chip->base, buf, len);
	aspeed_smc_stop_user(nor);

	return 0;
}

static void aspeed_smc_send_cmd_addr(struct spi_nor *nor, u8 cmd, u32 addr)
{
	struct aspeed_smc_chip *chip = nor->priv;
	__be32 temp;
	u32 cmdaddr;

	switch (nor->addr_width) {
	default:
		WARN_ONCE(1, "Unexpected address width %u, defaulting to 3\n",
			  nor->addr_width);
		/* FALLTHROUGH */
	case 3:
		cmdaddr = addr & 0xFFFFFF;

		cmdaddr |= (u32)cmd << 24;

		temp = cpu_to_be32(cmdaddr);
		aspeed_smc_to_fifo(chip->base, &temp, 4);
		break;
	case 4:
		temp = cpu_to_be32(addr);
		aspeed_smc_to_fifo(chip->base, &cmd, 1);
		aspeed_smc_to_fifo(chip->base, &temp, 4);
		break;
	}
}

static int aspeed_smc_read_user(struct spi_nor *nor, loff_t from, size_t len,
				size_t *retlen, u_char *read_buf)
{
	struct aspeed_smc_chip *chip = nor->priv;

	aspeed_smc_start_user(nor);
	aspeed_smc_send_cmd_addr(nor, nor->read_opcode, from);
	aspeed_smc_from_fifo(read_buf, chip->base, len);
	*retlen += len;
	aspeed_smc_stop_user(nor);

	return 0;
}

static void aspeed_smc_write_user(struct spi_nor *nor, loff_t to, size_t len,
				  size_t *retlen, const u_char *write_buf)
{
	struct aspeed_smc_chip *chip = nor->priv;

	aspeed_smc_start_user(nor);
	aspeed_smc_send_cmd_addr(nor, nor->program_opcode, to);
	aspeed_smc_to_fifo(chip->base, write_buf, len);
	*retlen += len;
	aspeed_smc_stop_user(nor);
}

static int aspeed_smc_erase(struct spi_nor *nor, loff_t offs)
{
	aspeed_smc_start_user(nor);
	aspeed_smc_send_cmd_addr(nor, nor->erase_opcode, offs);
	aspeed_smc_stop_user(nor);

	return 0;
}

static int aspeed_smc_remove(struct platform_device *dev)
{
	struct aspeed_smc_chip *chip;
	struct aspeed_smc_controller *controller = platform_get_drvdata(dev);
	int n;

	for (n = 0; n < controller->info->nce; n++) {
		chip = controller->chips[n];
		if (chip)
			mtd_device_unregister(&chip->nor.mtd);
	}

	return 0;
}

const struct of_device_id aspeed_smc_matches[] = {
	{ .compatible = "aspeed,fmc", .data = &fmc_info },
	{ .compatible = "aspeed,smc", .data = &smc_info },
	{ }
};
MODULE_DEVICE_TABLE(of, aspeed_smc_matches);

static struct platform_device *
of_platform_device_create_or_find(struct device_node *child,
				  struct device *parent)
{
	struct platform_device *cdev;

	cdev = of_platform_device_create(child, NULL, parent);
	if (!cdev)
		cdev = of_find_device_by_node(child);
	return cdev;
}

static int aspeed_smc_probe(struct platform_device *dev)
{
	struct aspeed_smc_controller *controller;
	const struct of_device_id *match;
	const struct aspeed_smc_info *info;
	struct resource *r;
	void __iomem *regs;
	struct device_node *child;
	int err = 0;
	unsigned int n;

	/*
	 * This driver passes ioremap addresses to io port accessors.
	 * This works on arm if the IO_SPACE_LIMIT does not truncate
	 * the address.
	 */
	if (~(unsigned long)IO_SPACE_LIMIT)
		return -ENODEV;

	match = of_match_device(aspeed_smc_matches, &dev->dev);
	if (!match || !match->data)
		return -ENODEV;
	info = match->data;
	r = platform_get_resource(dev, IORESOURCE_MEM, 0);
	regs = devm_ioremap_resource(&dev->dev, r);
	if (IS_ERR(regs))
		return PTR_ERR(regs);

	controller = devm_kzalloc(&dev->dev, sizeof(*controller) +
		info->nce * sizeof(controller->chips[0]), GFP_KERNEL);
	if (!controller)
		return -ENOMEM;
	platform_set_drvdata(dev, controller);
	controller->regs = regs;
	controller->info = info;
	mutex_init(&controller->mutex);

	/* XXX turn off legacy mode if fmc ? */
	/* XXX handshake to enable access to SMC (bios) controller w/ host? */

	for_each_available_child_of_node(dev->dev.of_node, child) {
		struct mtd_part_parser_data ppdata;
		struct platform_device *cdev;
		struct aspeed_smc_chip *chip;
		u32 reg;

		if (!of_device_is_compatible(child, "jedec,spi-nor"))
			continue;	/* XXX consider nand, nor children */


		/*
		 * create a platform device from the of node.
		 * if the device already was created (eg from
		 * a prior bind/unbind cycle) use it
		 *
		 * XXX The child name will become the default mtd
		 * name in ioctl and /proc/mtd.  Should we default
		 * to node->name (without unit)?  The name must be
		 * unique among all platform devices.  (Name would
		 * replace NULL in create call below).
		 * ... Or we can just encourage the label attribute.
		 *
		 * The only reason to do the child here is to use it in
		 * dev_err below for duplicate chip id.  We could use
		 * the controller dev.
		 */
		cdev = of_platform_device_create_or_find(child, &dev->dev);
		if (!cdev)
			continue;

		err = of_property_read_u32(child, "reg", &n);
		if (err == -EINVAL && info->nce == 1)
			n = 0;
		else if (err || n >= info->nce)
			continue;
		if (controller->chips[n]) {
			dev_err(&cdev->dev,
				"chip-id %u already in use in use by %s\n",
				n, dev_name(controller->chips[n]->nor.dev));
			continue;
		}
		chip = devm_kzalloc(&dev->dev, sizeof(*chip), GFP_KERNEL);
		if (!chip)
			continue;

		r = platform_get_resource(dev, IORESOURCE_MEM, n + 1);
		chip->base = devm_ioremap_resource(&dev->dev, r);

		if (!chip->base)
			continue;
		chip->controller = controller;
		chip->ctl = controller->regs + info->ctl0 + n * 4;

		/* dt said its spi.  xxx Set it in controller if has_type */
		chip->type = smc_type_spi;

		/*
		 * Always turn on write enable bit in config register to
		 * allow opcodes to be sent in user mode.
		 */
		mutex_lock(&controller->mutex);
		reg = readl(controller->regs + info->cfg);
		dev_dbg(&dev->dev, "flash config was %08x\n", reg);
		reg |= 1 << (info->we0 + n); /* WEn */
		writel(reg, controller->regs + info->cfg);
		mutex_unlock(&controller->mutex);

		/* XXX check resource within fmc CEx Segment Address Register */
		/* XXX -- see dt vs jedec id vs bootloader */
		/* XXX check / program clock phase/polarity,  only 0 or 3 */

		/*
		 * Read the existing control register to get basic values.
		 *
		 * XXX probably need more sanitation.
		 * XXX do we trust the bootloader or the device tree?
		 * spi-nor.c trusts jtag id over passed ids.
		 */
		reg = readl(chip->ctl);
		chip->ctl_val[smc_base] = reg & CONTROL_SPI_KEEP_MASK;

		if ((reg & CONTROL_SPI_COMMAND_MODE_MASK) ==
		    CONTROL_SPI_COMMAND_MODE_NORMAL)
			chip->ctl_val[smc_read] = reg;
		else
			chip->ctl_val[smc_read] = chip->ctl_val[smc_base] |
				CONTROL_SPI_COMMAND_MODE_NORMAL;

		chip->nor.dev = &cdev->dev;
		chip->nor.priv = chip;
		chip->nor.flash_node = child;
		chip->nor.mtd.name = of_get_property(child, "label", NULL);
		chip->nor.erase = aspeed_smc_erase;
		chip->nor.read = aspeed_smc_read_user;
		chip->nor.write = aspeed_smc_write_user;
		chip->nor.read_reg = aspeed_smc_read_reg;
		chip->nor.write_reg = aspeed_smc_write_reg;

		/*
		 * XXX use of property and controller info width to choose
		 * SPI_NOR_QUAD , SPI_NOR_DUAL
		 */
		err = spi_nor_scan(&chip->nor, NULL, SPI_NOR_NORMAL);
		if (err)
			continue;

		chip->ctl_val[smc_write] = chip->ctl_val[smc_base] |
			spi_control_fill_opcode(chip->nor.program_opcode) |
			CONTROL_SPI_COMMAND_MODE_WRITE;

		/* XXX intrepret nor flags into controller settings */
		/* XXX enable fast read here */
		/* XXX check if resource size big enough for chip */

		memset(&ppdata, 0, sizeof(ppdata));
		ppdata.of_node = cdev->dev.of_node;
		err = mtd_device_parse_register(&chip->nor.mtd, NULL, &ppdata, NULL, 0);
		if (err)
			continue;
		controller->chips[n] = chip;
	}

	/* did we register any children? */
	for (n = 0; n < info->nce; n++)
		if (controller->chips[n])
			break;

	if (n == info->nce)
		return -ENODEV;

	return 0;
}

static struct platform_driver aspeed_smc_driver = {
	.probe = aspeed_smc_probe,
	.remove = aspeed_smc_remove,
	.driver = {
		.name = KBUILD_MODNAME,
		.of_match_table = aspeed_smc_matches,
	}
};

module_platform_driver(aspeed_smc_driver);

MODULE_DESCRIPTION("ASPEED Static Memory Controller Driver");
MODULE_AUTHOR("Milton Miller");
MODULE_LICENSE("GPL v2");