blob: 7747ad0027ae06048c41b8122f47b06395652240 [file] [log] [blame]
Stephen Rothwellb41912c2007-05-01 16:12:57 +10001#ifndef _LINUX_OF_PLATFORM_H
2#define _LINUX_OF_PLATFORM_H
3/*
4 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
5 * <benh@kernel.crashing.org>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Stephen Rothwellb41912c2007-05-01 16:12:57 +100014#include <linux/device.h>
15#include <linux/mod_devicetable.h>
16#include <linux/pm.h>
17#include <linux/of_device.h>
Grant Likelyeca39302010-06-08 07:48:21 -060018#include <linux/platform_device.h>
Stephen Rothwellb41912c2007-05-01 16:12:57 +100019
Grant Likely2dc11582010-08-06 09:25:50 -060020/**
Grant Likely15c35972011-06-21 10:59:35 -060021 * struct of_dev_auxdata - lookup table entry for device names & platform_data
22 * @compatible: compatible value of node to match against node
23 * @phys_addr: Start address of registers to match against node
24 * @name: Name to assign for matching nodes
25 * @platform_data: platform_data to assign for matching nodes
26 *
27 * This lookup table allows the caller of of_platform_populate() to override
28 * the names of devices when creating devices from the device tree. The table
29 * should be terminated with an empty entry. It also allows the platform_data
30 * pointer to be set.
31 *
32 * The reason for this functionality is that some Linux infrastructure uses
33 * the device name to look up a specific device, but the Linux-specific names
34 * are not encoded into the device tree, so the kernel needs to provide specific
35 * values.
36 *
37 * Note: Using an auxdata lookup table should be considered a last resort when
38 * converting a platform to use the DT. Normally the automatically generated
39 * device name will not matter, and drivers should obtain data from the device
40 * node instead of from an anonymouns platform_data pointer.
41 */
42struct of_dev_auxdata {
43 char *compatible;
44 resource_size_t phys_addr;
45 char *name;
46 void *platform_data;
47};
48
49/* Macro to simplify populating a lookup table */
50#define OF_DEV_AUXDATA(_compat,_phys,_name,_pdata) \
51 { .compatible = _compat, .phys_addr = _phys, .name = _name, \
52 .platform_data = _pdata }
53
54/**
Grant Likely2dc11582010-08-06 09:25:50 -060055 * of_platform_driver - Legacy of-aware driver for platform devices.
56 *
57 * An of_platform_driver driver is attached to a basic platform_device on
Grant Likelyd714d192011-02-22 20:22:44 -070058 * the ibm ebus (ibmebus_bus_type).
Stephen Rothwellb41912c2007-05-01 16:12:57 +100059 */
60struct of_platform_driver
61{
Grant Likely94a0cb12010-07-22 13:59:23 -060062 int (*probe)(struct platform_device* dev,
Stephen Rothwellb41912c2007-05-01 16:12:57 +100063 const struct of_device_id *match);
Grant Likely94a0cb12010-07-22 13:59:23 -060064 int (*remove)(struct platform_device* dev);
Stephen Rothwellb41912c2007-05-01 16:12:57 +100065
Grant Likely94a0cb12010-07-22 13:59:23 -060066 int (*suspend)(struct platform_device* dev, pm_message_t state);
67 int (*resume)(struct platform_device* dev);
68 int (*shutdown)(struct platform_device* dev);
Stephen Rothwellb41912c2007-05-01 16:12:57 +100069
70 struct device_driver driver;
71};
72#define to_of_platform_driver(drv) \
73 container_of(drv,struct of_platform_driver, driver)
74
Grant Likelycbb49c22011-06-21 10:59:34 -060075extern const struct of_device_id of_default_bus_match_table[];
76
Grant Likely0763ed22009-04-30 15:08:50 -070077/* Platform drivers register/unregister */
Grant Likely94a0cb12010-07-22 13:59:23 -060078extern struct platform_device *of_device_alloc(struct device_node *np,
Grant Likely94c09312010-06-08 07:48:14 -060079 const char *bus_id,
80 struct device *parent);
Grant Likely94a0cb12010-07-22 13:59:23 -060081extern struct platform_device *of_find_device_by_node(struct device_node *np);
Stephen Rothwellb41912c2007-05-01 16:12:57 +100082
Grant Likely5fd200f2010-06-08 07:48:13 -060083/* Platform devices and busses creation */
Grant Likely94a0cb12010-07-22 13:59:23 -060084extern struct platform_device *of_platform_device_create(struct device_node *np,
Grant Likely5fd200f2010-06-08 07:48:13 -060085 const char *bus_id,
86 struct device *parent);
87
Grant Likely5fd200f2010-06-08 07:48:13 -060088extern int of_platform_bus_probe(struct device_node *root,
89 const struct of_device_id *matches,
90 struct device *parent);
Arnd Bergmann8a46f4f2013-06-01 00:22:52 +020091#ifdef CONFIG_OF_ADDRESS
Grant Likely29d4f8a2011-06-21 10:59:34 -060092extern int of_platform_populate(struct device_node *root,
93 const struct of_device_id *matches,
Grant Likely15c35972011-06-21 10:59:35 -060094 const struct of_dev_auxdata *lookup,
Grant Likely29d4f8a2011-06-21 10:59:34 -060095 struct device *parent);
Arnd Bergmann8a46f4f2013-06-01 00:22:52 +020096#else
Grant Likely964dba22012-02-24 14:58:34 -070097static inline int of_platform_populate(struct device_node *root,
98 const struct of_device_id *matches,
99 const struct of_dev_auxdata *lookup,
100 struct device *parent)
101{
102 return -ENODEV;
103}
Arnd Bergmann8a46f4f2013-06-01 00:22:52 +0200104#endif
Grant Likely5fd200f2010-06-08 07:48:13 -0600105
Stephen Rothwellb41912c2007-05-01 16:12:57 +1000106#endif /* _LINUX_OF_PLATFORM_H */