Blame view

kernel/linux-rt-4.4.41/drivers/regulator/fixed-helper.c 1.59 KB
5113f6f70   김현기   kernel add
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
  #include <linux/slab.h>
  #include <linux/string.h>
  #include <linux/platform_device.h>
  #include <linux/regulator/machine.h>
  #include <linux/regulator/fixed.h>
  
  struct fixed_regulator_data {
  	struct fixed_voltage_config cfg;
  	struct regulator_init_data init_data;
  	struct platform_device pdev;
  };
  
  static void regulator_fixed_release(struct device *dev)
  {
  	struct fixed_regulator_data *data = container_of(dev,
  			struct fixed_regulator_data, pdev.dev);
  	kfree(data->cfg.supply_name);
  	kfree(data);
  }
  
  /**
   * regulator_register_fixed_name - register a no-op fixed regulator
   * @id: platform device id
   * @name: name to be used for the regulator
   * @supplies: consumers for this regulator
   * @num_supplies: number of consumers
   * @uv: voltage in microvolts
   */
  struct platform_device *regulator_register_always_on(int id, const char *name,
  	struct regulator_consumer_supply *supplies, int num_supplies, int uv)
  {
  	struct fixed_regulator_data *data;
  
  	data = kzalloc(sizeof(*data), GFP_KERNEL);
  	if (!data)
  		return NULL;
  
  	data->cfg.supply_name = kstrdup(name, GFP_KERNEL);
  	if (!data->cfg.supply_name) {
  		kfree(data);
  		return NULL;
  	}
  
  	data->cfg.microvolts = uv;
  	data->cfg.gpio = -EINVAL;
  	data->cfg.enabled_at_boot = 1;
  	data->cfg.init_data = &data->init_data;
  
  	data->init_data.constraints.always_on = 1;
  	data->init_data.consumer_supplies = supplies;
  	data->init_data.num_consumer_supplies = num_supplies;
  
  	data->pdev.name = "reg-fixed-voltage";
  	data->pdev.id = id;
  	data->pdev.dev.platform_data = &data->cfg;
  	data->pdev.dev.release = regulator_fixed_release;
  
  	platform_device_register(&data->pdev);
  
  	return &data->pdev;
  }