Blame view

kernel/linux-imx6_3.14.28/arch/arm/plat-versatile/leds.c 2.26 KB
6b13f685e   김민수   BSP 최초 추가
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
  /*
   * Driver for the 8 user LEDs found on the RealViews and Versatiles
   * Based on DaVinci's DM365 board code
   *
   * License terms: GNU General Public License (GPL) version 2
   * Author: Linus Walleij <triad@df.lth.se>
   */
  #include <linux/kernel.h>
  #include <linux/init.h>
  #include <linux/io.h>
  #include <linux/slab.h>
  #include <linux/leds.h>
  
  #include <mach/hardware.h>
  #include <mach/platform.h>
  
  #ifdef VERSATILE_SYS_BASE
  #define LEDREG	(__io_address(VERSATILE_SYS_BASE) + VERSATILE_SYS_LED_OFFSET)
  #endif
  
  #ifdef REALVIEW_SYS_BASE
  #define LEDREG	(__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_LED_OFFSET)
  #endif
  
  struct versatile_led {
  	struct led_classdev	cdev;
  	u8			mask;
  };
  
  /*
   * The triggers lines up below will only be used if the
   * LED triggers are compiled in.
   */
  static const struct {
  	const char *name;
  	const char *trigger;
  } versatile_leds[] = {
  	{ "versatile:0", "heartbeat", },
  	{ "versatile:1", "mmc0", },
  	{ "versatile:2", "cpu0" },
  	{ "versatile:3", "cpu1" },
  	{ "versatile:4", "cpu2" },
  	{ "versatile:5", "cpu3" },
  	{ "versatile:6", },
  	{ "versatile:7", },
  };
  
  static void versatile_led_set(struct led_classdev *cdev,
  			      enum led_brightness b)
  {
  	struct versatile_led *led = container_of(cdev,
  						 struct versatile_led, cdev);
  	u32 reg = readl(LEDREG);
  
  	if (b != LED_OFF)
  		reg |= led->mask;
  	else
  		reg &= ~led->mask;
  	writel(reg, LEDREG);
  }
  
  static enum led_brightness versatile_led_get(struct led_classdev *cdev)
  {
  	struct versatile_led *led = container_of(cdev,
  						 struct versatile_led, cdev);
  	u32 reg = readl(LEDREG);
  
  	return (reg & led->mask) ? LED_FULL : LED_OFF;
  }
  
  static int __init versatile_leds_init(void)
  {
  	int i;
  
  	/* All ON */
  	writel(0xff, LEDREG);
  	for (i = 0; i < ARRAY_SIZE(versatile_leds); i++) {
  		struct versatile_led *led;
  
  		led = kzalloc(sizeof(*led), GFP_KERNEL);
  		if (!led)
  			break;
  
  		led->cdev.name = versatile_leds[i].name;
  		led->cdev.brightness_set = versatile_led_set;
  		led->cdev.brightness_get = versatile_led_get;
  		led->cdev.default_trigger = versatile_leds[i].trigger;
  		led->mask = BIT(i);
  
  		if (led_classdev_register(NULL, &led->cdev) < 0) {
  			kfree(led);
  			break;
  		}
  	}
  
  	return 0;
  }
  
  /*
   * Since we may have triggers on any subsystem, defer registration
   * until after subsystem_init.
   */
  fs_initcall(versatile_leds_init);