4 * Driver for Microchip 23k256 SPI RAM chips
6 * Copyright © 2016 Andrew Lunn <andrew@lunn.ch>
8 * This code is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/device.h>
14 #include <linux/module.h>
15 #include <linux/mtd/mtd.h>
16 #include <linux/mtd/partitions.h>
17 #include <linux/mutex.h>
18 #include <linux/sched.h>
19 #include <linux/sizes.h>
20 #include <linux/spi/flash.h>
21 #include <linux/spi/spi.h>
22 #include <linux/of_device.h>
24 #define MAX_CMD_SIZE 4
31 struct mchp23k256_flash
{
32 struct spi_device
*spi
;
35 const struct mchp23_caps
*caps
;
38 #define MCHP23K256_CMD_WRITE_STATUS 0x01
39 #define MCHP23K256_CMD_WRITE 0x02
40 #define MCHP23K256_CMD_READ 0x03
41 #define MCHP23K256_MODE_SEQ BIT(6)
43 #define to_mchp23k256_flash(x) container_of(x, struct mchp23k256_flash, mtd)
45 static void mchp23k256_addr2cmd(struct mchp23k256_flash
*flash
,
46 unsigned int addr
, u8
*cmd
)
51 * Address is sent in big endian (MSB first) and we skip
52 * the first entry of the cmd array which contains the cmd
55 for (i
= flash
->caps
->addr_width
; i
> 0; i
--, addr
>>= 8)
59 static int mchp23k256_cmdsz(struct mchp23k256_flash
*flash
)
61 return 1 + flash
->caps
->addr_width
;
64 static int mchp23k256_write(struct mtd_info
*mtd
, loff_t to
, size_t len
,
65 size_t *retlen
, const unsigned char *buf
)
67 struct mchp23k256_flash
*flash
= to_mchp23k256_flash(mtd
);
68 struct spi_transfer transfer
[2] = {};
69 struct spi_message message
;
70 unsigned char command
[MAX_CMD_SIZE
];
73 spi_message_init(&message
);
75 cmd_len
= mchp23k256_cmdsz(flash
);
77 command
[0] = MCHP23K256_CMD_WRITE
;
78 mchp23k256_addr2cmd(flash
, to
, command
);
80 transfer
[0].tx_buf
= command
;
81 transfer
[0].len
= cmd_len
;
82 spi_message_add_tail(&transfer
[0], &message
);
84 transfer
[1].tx_buf
= buf
;
85 transfer
[1].len
= len
;
86 spi_message_add_tail(&transfer
[1], &message
);
88 mutex_lock(&flash
->lock
);
90 ret
= spi_sync(flash
->spi
, &message
);
92 mutex_unlock(&flash
->lock
);
97 if (retlen
&& message
.actual_length
> cmd_len
)
98 *retlen
+= message
.actual_length
- cmd_len
;
103 static int mchp23k256_read(struct mtd_info
*mtd
, loff_t from
, size_t len
,
104 size_t *retlen
, unsigned char *buf
)
106 struct mchp23k256_flash
*flash
= to_mchp23k256_flash(mtd
);
107 struct spi_transfer transfer
[2] = {};
108 struct spi_message message
;
109 unsigned char command
[MAX_CMD_SIZE
];
112 spi_message_init(&message
);
114 cmd_len
= mchp23k256_cmdsz(flash
);
116 memset(&transfer
, 0, sizeof(transfer
));
117 command
[0] = MCHP23K256_CMD_READ
;
118 mchp23k256_addr2cmd(flash
, from
, command
);
120 transfer
[0].tx_buf
= command
;
121 transfer
[0].len
= cmd_len
;
122 spi_message_add_tail(&transfer
[0], &message
);
124 transfer
[1].rx_buf
= buf
;
125 transfer
[1].len
= len
;
126 spi_message_add_tail(&transfer
[1], &message
);
128 mutex_lock(&flash
->lock
);
130 ret
= spi_sync(flash
->spi
, &message
);
132 mutex_unlock(&flash
->lock
);
137 if (retlen
&& message
.actual_length
> cmd_len
)
138 *retlen
+= message
.actual_length
- cmd_len
;
144 * Set the device into sequential mode. This allows read/writes to the
145 * entire SRAM in a single operation
147 static int mchp23k256_set_mode(struct spi_device
*spi
)
149 struct spi_transfer transfer
= {};
150 struct spi_message message
;
151 unsigned char command
[2];
153 spi_message_init(&message
);
155 command
[0] = MCHP23K256_CMD_WRITE_STATUS
;
156 command
[1] = MCHP23K256_MODE_SEQ
;
158 transfer
.tx_buf
= command
;
159 transfer
.len
= sizeof(command
);
160 spi_message_add_tail(&transfer
, &message
);
162 return spi_sync(spi
, &message
);
165 static const struct mchp23_caps mchp23k256_caps
= {
170 static const struct mchp23_caps mchp23lcv1024_caps
= {
175 static int mchp23k256_probe(struct spi_device
*spi
)
177 struct mchp23k256_flash
*flash
;
178 struct flash_platform_data
*data
;
181 flash
= devm_kzalloc(&spi
->dev
, sizeof(*flash
), GFP_KERNEL
);
186 mutex_init(&flash
->lock
);
187 spi_set_drvdata(spi
, flash
);
189 err
= mchp23k256_set_mode(spi
);
193 data
= dev_get_platdata(&spi
->dev
);
195 flash
->caps
= of_device_get_match_data(&spi
->dev
);
197 flash
->caps
= &mchp23k256_caps
;
199 mtd_set_of_node(&flash
->mtd
, spi
->dev
.of_node
);
200 flash
->mtd
.dev
.parent
= &spi
->dev
;
201 flash
->mtd
.type
= MTD_RAM
;
202 flash
->mtd
.flags
= MTD_CAP_RAM
;
203 flash
->mtd
.writesize
= 1;
204 flash
->mtd
.size
= flash
->caps
->size
;
205 flash
->mtd
._read
= mchp23k256_read
;
206 flash
->mtd
._write
= mchp23k256_write
;
208 err
= mtd_device_register(&flash
->mtd
, data
? data
->parts
: NULL
,
209 data
? data
->nr_parts
: 0);
216 static int mchp23k256_remove(struct spi_device
*spi
)
218 struct mchp23k256_flash
*flash
= spi_get_drvdata(spi
);
220 return mtd_device_unregister(&flash
->mtd
);
223 static const struct of_device_id mchp23k256_of_table
[] = {
225 .compatible
= "microchip,mchp23k256",
226 .data
= &mchp23k256_caps
,
229 .compatible
= "microchip,mchp23lcv1024",
230 .data
= &mchp23lcv1024_caps
,
234 MODULE_DEVICE_TABLE(of
, mchp23k256_of_table
);
236 static struct spi_driver mchp23k256_driver
= {
238 .name
= "mchp23k256",
239 .of_match_table
= of_match_ptr(mchp23k256_of_table
),
241 .probe
= mchp23k256_probe
,
242 .remove
= mchp23k256_remove
,
245 module_spi_driver(mchp23k256_driver
);
247 MODULE_DESCRIPTION("MTD SPI driver for MCHP23K256 RAM chips");
248 MODULE_AUTHOR("Andrew Lunn <andre@lunn.ch>");
249 MODULE_LICENSE("GPL v2");
250 MODULE_ALIAS("spi:mchp23k256");