Loading...
1/*
2 * Arch specific extensions to struct device
3 *
4 * This file is released under the GPLv2
5 */
6
7struct dev_archdata {
8};
9
10struct platform_device;
11/* allocate contiguous memory chunk and fill in struct resource */
12int platform_resource_setup_memory(struct platform_device *pdev,
13 char *name, unsigned long memsize);
14
15void plat_early_device_setup(void);
16
17#define PDEV_ARCHDATA_FLAG_INIT 0
18#define PDEV_ARCHDATA_FLAG_IDLE 1
19#define PDEV_ARCHDATA_FLAG_SUSP 2
20
21struct pdev_archdata {
22 int hwblk_id;
23#ifdef CONFIG_PM_RUNTIME
24 unsigned long flags;
25 struct list_head entry;
26 struct mutex mutex;
27#endif
28};
1/*
2 * Arch specific extensions to struct device
3 *
4 * This file is released under the GPLv2
5 */
6#ifndef __ASM_SH_DEVICE_H
7#define __ASM_SH_DEVICE_H
8
9#include <asm-generic/device.h>
10
11struct platform_device;
12/* allocate contiguous memory chunk and fill in struct resource */
13int platform_resource_setup_memory(struct platform_device *pdev,
14 char *name, unsigned long memsize);
15
16void plat_early_device_setup(void);
17
18#endif /* __ASM_SH_DEVICE_H */