hc
2023-10-25 6c2073b7aa40e29d0eca7d571dd7bc590c7ecaa7
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
/*
 * platform_tca6416.c: tca6416 platform data initialization file
 *
 * (C) Copyright 2013 Intel Corporation
 * Author: Sathyanarayanan Kuppuswamy <sathyanarayanan.kuppuswamy@intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; version 2
 * of the License.
 */
 
#include <linux/platform_data/pca953x.h>
#include <linux/i2c.h>
#include <linux/gpio.h>
#include <asm/intel-mid.h>
 
#define TCA6416_NAME    "tca6416"
#define TCA6416_BASE    "tca6416_base"
#define TCA6416_INTR    "tca6416_int"
 
static void *tca6416_platform_data(void *info)
{
   static struct pca953x_platform_data tca6416;
   struct i2c_board_info *i2c_info = info;
   int gpio_base, intr;
   char base_pin_name[SFI_NAME_LEN + 1];
   char intr_pin_name[SFI_NAME_LEN + 1];
 
   strcpy(i2c_info->type, TCA6416_NAME);
   strcpy(base_pin_name, TCA6416_BASE);
   strcpy(intr_pin_name, TCA6416_INTR);
 
   gpio_base = get_gpio_by_name(base_pin_name);
   intr = get_gpio_by_name(intr_pin_name);
 
   if (gpio_base < 0)
       return NULL;
   tca6416.gpio_base = gpio_base;
   if (intr >= 0) {
       i2c_info->irq = intr + INTEL_MID_IRQ_OFFSET;
       tca6416.irq_base = gpio_base + INTEL_MID_IRQ_OFFSET;
   } else {
       i2c_info->irq = -1;
       tca6416.irq_base = -1;
   }
   return &tca6416;
}
 
static const struct devs_id tca6416_dev_id __initconst = {
   .name = "tca6416",
   .type = SFI_DEV_TYPE_I2C,
   .delay = 1,
   .get_platform_data = &tca6416_platform_data,
};
 
sfi_device(tca6416_dev_id);