blob: 6a8351a4588e2a83f559b35e57c8aa8f0f396c0b [file] [log] [blame]
Radu Pirea7d3aa342018-07-13 19:47:33 +03001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Driver for AT91 USART
4 *
5 * Copyright (C) 2018 Microchip Technology
6 *
7 * Author: Radu Pirea <radu.pirea@microchip.com>
8 *
9 */
10
11#include <dt-bindings/mfd/at91-usart.h>
12
13#include <linux/module.h>
14#include <linux/mfd/core.h>
Lee Jones65b80df2018-09-11 11:34:27 +010015#include <linux/of.h>
Radu Pirea7d3aa342018-07-13 19:47:33 +030016#include <linux/property.h>
17
Axel Lin10cffde2019-01-31 12:32:12 +080018static const struct mfd_cell at91_usart_spi_subdev = {
19 .name = "at91_usart_spi",
20 .of_compatible = "microchip,at91sam9g45-usart-spi",
21};
Radu Pirea7d3aa342018-07-13 19:47:33 +030022
Axel Lin10cffde2019-01-31 12:32:12 +080023static const struct mfd_cell at91_usart_serial_subdev = {
24 .name = "atmel_usart_serial",
25 .of_compatible = "atmel,at91rm9200-usart-serial",
26};
Radu Pirea7d3aa342018-07-13 19:47:33 +030027
28static int at91_usart_mode_probe(struct platform_device *pdev)
29{
Axel Linc0056bf2019-01-31 12:32:13 +080030 const struct mfd_cell *cell;
Radu Pirea7d3aa342018-07-13 19:47:33 +030031 u32 opmode = AT91_USART_MODE_SERIAL;
32
33 device_property_read_u32(&pdev->dev, "atmel,usart-mode", &opmode);
34
35 switch (opmode) {
36 case AT91_USART_MODE_SPI:
Axel Linc0056bf2019-01-31 12:32:13 +080037 cell = &at91_usart_spi_subdev;
Radu Pirea7d3aa342018-07-13 19:47:33 +030038 break;
39 case AT91_USART_MODE_SERIAL:
Axel Linc0056bf2019-01-31 12:32:13 +080040 cell = &at91_usart_serial_subdev;
Radu Pirea7d3aa342018-07-13 19:47:33 +030041 break;
42 default:
43 dev_err(&pdev->dev, "atmel,usart-mode has an invalid value %u\n",
44 opmode);
45 return -EINVAL;
46 }
47
Axel Linc0056bf2019-01-31 12:32:13 +080048 return devm_mfd_add_devices(&pdev->dev, PLATFORM_DEVID_AUTO, cell, 1,
Radu Pirea7d3aa342018-07-13 19:47:33 +030049 NULL, 0, NULL);
50}
51
52static const struct of_device_id at91_usart_mode_of_match[] = {
53 { .compatible = "atmel,at91rm9200-usart" },
54 { .compatible = "atmel,at91sam9260-usart" },
55 { /* sentinel */ }
56};
57
58MODULE_DEVICE_TABLE(of, at91_usart_mode_of_match);
59
60static struct platform_driver at91_usart_mfd = {
61 .probe = at91_usart_mode_probe,
62 .driver = {
63 .name = "at91_usart_mode",
64 .of_match_table = at91_usart_mode_of_match,
65 },
66};
67
68module_platform_driver(at91_usart_mfd);
69
70MODULE_AUTHOR("Radu Pirea <radu.pirea@microchip.com>");
71MODULE_DESCRIPTION("AT91 USART MFD driver");
72MODULE_LICENSE("GPL v2");