1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2006 Juergen Beisert, Pengutronix
4 * Copyright (C) 2008 Guennadi Liakhovetski, Pengutronix
5 * Copyright (C) 2009 Wolfram Sang, Pengutronix
7 * Check max730x.c for further details.
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/platform_device.h>
13 #include <linux/mutex.h>
14 #include <linux/slab.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/max7301.h>
18 /* A write to the MAX7301 means one message with one transfer */
19 static int max7301_spi_write(struct device
*dev
, unsigned int reg
,
22 struct spi_device
*spi
= to_spi_device(dev
);
23 u16 word
= ((reg
& 0x7F) << 8) | (val
& 0xFF);
25 return spi_write_then_read(spi
, &word
, sizeof(word
), NULL
, 0);
28 /* A read from the MAX7301 means two transfers; here, one message each */
30 static int max7301_spi_read(struct device
*dev
, unsigned int reg
)
34 struct spi_device
*spi
= to_spi_device(dev
);
36 word
= 0x8000 | (reg
<< 8);
37 ret
= spi_write_then_read(spi
, &word
, sizeof(word
), &word
,
44 static int max7301_probe(struct spi_device
*spi
)
49 /* bits_per_word cannot be configured in platform data */
50 spi
->bits_per_word
= 16;
55 ts
= devm_kzalloc(&spi
->dev
, sizeof(struct max7301
), GFP_KERNEL
);
59 ts
->read
= max7301_spi_read
;
60 ts
->write
= max7301_spi_write
;
63 ret
= __max730x_probe(ts
);
67 static int max7301_remove(struct spi_device
*spi
)
69 return __max730x_remove(&spi
->dev
);
72 static const struct spi_device_id max7301_id
[] = {
76 MODULE_DEVICE_TABLE(spi
, max7301_id
);
78 static struct spi_driver max7301_driver
= {
82 .probe
= max7301_probe
,
83 .remove
= max7301_remove
,
84 .id_table
= max7301_id
,
87 static int __init
max7301_init(void)
89 return spi_register_driver(&max7301_driver
);
91 /* register after spi postcore initcall and before
92 * subsys initcalls that may rely on these GPIOs
94 subsys_initcall(max7301_init
);
96 static void __exit
max7301_exit(void)
98 spi_unregister_driver(&max7301_driver
);
100 module_exit(max7301_exit
);
102 MODULE_AUTHOR("Juergen Beisert, Wolfram Sang");
103 MODULE_LICENSE("GPL v2");
104 MODULE_DESCRIPTION("MAX7301 GPIO-Expander");