Blame view

drivers/gpio/gpio-loongson1.c 2.27 KB
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
1
2
3
4
5
6
7
8
9
  /*
   * GPIO Driver for Loongson 1 SoC
   *
   * Copyright (C) 2015-2016 Zhang, Keguang <keguang.zhang@gmail.com>
   *
   * This file is licensed under the terms of the GNU General Public
   * License version 2. This program is licensed "as is" without any
   * warranty of any kind, whether express or implied.
   */
5f604506f   Paul Gortmaker   gpio: loongson1: ...
10
  #include <linux/module.h>
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
11
12
  #include <linux/gpio/driver.h>
  #include <linux/platform_device.h>
fe29416b5   Linus Walleij   gpio: loongson1: ...
13
  #include <linux/bitops.h>
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
14
15
16
17
18
19
20
21
22
23
24
  
  /* Loongson 1 GPIO Register Definitions */
  #define GPIO_CFG		0x0
  #define GPIO_DIR		0x10
  #define GPIO_DATA		0x20
  #define GPIO_OUTPUT		0x30
  
  static void __iomem *gpio_reg_base;
  
  static int ls1x_gpio_request(struct gpio_chip *gc, unsigned int offset)
  {
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
25
26
27
  	unsigned long flags;
  
  	spin_lock_irqsave(&gc->bgpio_lock, flags);
fe29416b5   Linus Walleij   gpio: loongson1: ...
28
  	__raw_writel(__raw_readl(gpio_reg_base + GPIO_CFG) | BIT(offset),
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
29
30
31
32
33
34
35
36
  		     gpio_reg_base + GPIO_CFG);
  	spin_unlock_irqrestore(&gc->bgpio_lock, flags);
  
  	return 0;
  }
  
  static void ls1x_gpio_free(struct gpio_chip *gc, unsigned int offset)
  {
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
37
38
39
  	unsigned long flags;
  
  	spin_lock_irqsave(&gc->bgpio_lock, flags);
fe29416b5   Linus Walleij   gpio: loongson1: ...
40
  	__raw_writel(__raw_readl(gpio_reg_base + GPIO_CFG) & ~BIT(offset),
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
41
42
43
44
45
46
47
48
  		     gpio_reg_base + GPIO_CFG);
  	spin_unlock_irqrestore(&gc->bgpio_lock, flags);
  }
  
  static int ls1x_gpio_probe(struct platform_device *pdev)
  {
  	struct device *dev = &pdev->dev;
  	struct gpio_chip *gc;
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
49
50
51
52
53
  	int ret;
  
  	gc = devm_kzalloc(dev, sizeof(*gc), GFP_KERNEL);
  	if (!gc)
  		return -ENOMEM;
62fe072a2   Enrico Weigelt, metux IT consult   drivers: gpio: lo...
54
  	gpio_reg_base = devm_platform_ioremap_resource(pdev, 0);
bd37c999c   Kelvin Cheung   gpio: Loongson1: ...
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
  	if (IS_ERR(gpio_reg_base))
  		return PTR_ERR(gpio_reg_base);
  
  	ret = bgpio_init(gc, dev, 4, gpio_reg_base + GPIO_DATA,
  			 gpio_reg_base + GPIO_OUTPUT, NULL,
  			 NULL, gpio_reg_base + GPIO_DIR, 0);
  	if (ret)
  		goto err;
  
  	gc->owner = THIS_MODULE;
  	gc->request = ls1x_gpio_request;
  	gc->free = ls1x_gpio_free;
  	gc->base = pdev->id * 32;
  
  	ret = devm_gpiochip_add_data(dev, gc, NULL);
  	if (ret)
  		goto err;
  
  	platform_set_drvdata(pdev, gc);
  	dev_info(dev, "Loongson1 GPIO driver registered
  ");
  
  	return 0;
  err:
  	dev_err(dev, "failed to register GPIO device
  ");
  	return ret;
  }
  
  static struct platform_driver ls1x_gpio_driver = {
  	.probe	= ls1x_gpio_probe,
  	.driver	= {
  		.name	= "ls1x-gpio",
  	},
  };
  
  module_platform_driver(ls1x_gpio_driver);
  
  MODULE_AUTHOR("Kelvin Cheung <keguang.zhang@gmail.com>");
  MODULE_DESCRIPTION("Loongson1 GPIO driver");
  MODULE_LICENSE("GPL");