diff options
| -rw-r--r-- | arch/arm/plat-omap/Makefile | 4 | ||||
| -rw-r--r-- | arch/arm/plat-omap/include/mach/omap_device.h | 141 | ||||
| -rw-r--r-- | arch/arm/plat-omap/omap_device.c | 687 |
3 files changed, 832 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/Makefile b/arch/arm/plat-omap/Makefile index 5e10d0a2eb8d..98f01910c2cf 100644 --- a/arch/arm/plat-omap/Makefile +++ b/arch/arm/plat-omap/Makefile | |||
| @@ -12,6 +12,10 @@ obj- := | |||
| 12 | # OCPI interconnect support for 1710, 1610 and 5912 | 12 | # OCPI interconnect support for 1710, 1610 and 5912 |
| 13 | obj-$(CONFIG_ARCH_OMAP16XX) += ocpi.o | 13 | obj-$(CONFIG_ARCH_OMAP16XX) += ocpi.o |
| 14 | 14 | ||
| 15 | # omap_device support (OMAP2+ only at the moment) | ||
| 16 | obj-$(CONFIG_ARCH_OMAP2) += omap_device.o | ||
| 17 | obj-$(CONFIG_ARCH_OMAP3) += omap_device.o | ||
| 18 | |||
| 15 | obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o | 19 | obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o |
| 16 | obj-$(CONFIG_OMAP_IOMMU) += iommu.o iovmm.o | 20 | obj-$(CONFIG_OMAP_IOMMU) += iommu.o iovmm.o |
| 17 | obj-$(CONFIG_OMAP_IOMMU_DEBUG) += iommu-debug.o | 21 | obj-$(CONFIG_OMAP_IOMMU_DEBUG) += iommu-debug.o |
diff --git a/arch/arm/plat-omap/include/mach/omap_device.h b/arch/arm/plat-omap/include/mach/omap_device.h new file mode 100644 index 000000000000..bd0e136db337 --- /dev/null +++ b/arch/arm/plat-omap/include/mach/omap_device.h | |||
| @@ -0,0 +1,141 @@ | |||
| 1 | /* | ||
| 2 | * omap_device headers | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Nokia Corporation | ||
| 5 | * Paul Walmsley | ||
| 6 | * | ||
| 7 | * Developed in collaboration with (alphabetical order): Benoit | ||
| 8 | * Cousson, Kevin Hilman, Tony Lindgren, Rajendra Nayak, Vikram | ||
| 9 | * Pandita, Sakari Poussa, Anand Sawant, Santosh Shilimkar, Richard | ||
| 10 | * Woodruff | ||
| 11 | * | ||
| 12 | * This program is free software; you can redistribute it and/or modify | ||
| 13 | * it under the terms of the GNU General Public License version 2 as | ||
| 14 | * published by the Free Software Foundation. | ||
| 15 | * | ||
| 16 | * Eventually this type of functionality should either be | ||
| 17 | * a) implemented via arch-specific pointers in platform_device | ||
| 18 | * or | ||
| 19 | * b) implemented as a proper omap_bus/omap_device in Linux, no more | ||
| 20 | * platform_device | ||
| 21 | * | ||
| 22 | * omap_device differs from omap_hwmod in that it includes external | ||
| 23 | * (e.g., board- and system-level) integration details. omap_hwmod | ||
| 24 | * stores hardware data that is invariant for a given OMAP chip. | ||
| 25 | * | ||
| 26 | * To do: | ||
| 27 | * - GPIO integration | ||
| 28 | * - regulator integration | ||
| 29 | * | ||
| 30 | */ | ||
| 31 | #ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_OMAP_DEVICE_H | ||
| 32 | #define __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_OMAP_DEVICE_H | ||
| 33 | |||
| 34 | #include <linux/kernel.h> | ||
| 35 | #include <linux/platform_device.h> | ||
| 36 | |||
| 37 | #include <mach/omap_hwmod.h> | ||
| 38 | |||
| 39 | /* omap_device._state values */ | ||
| 40 | #define OMAP_DEVICE_STATE_UNKNOWN 0 | ||
| 41 | #define OMAP_DEVICE_STATE_ENABLED 1 | ||
| 42 | #define OMAP_DEVICE_STATE_IDLE 2 | ||
| 43 | #define OMAP_DEVICE_STATE_SHUTDOWN 3 | ||
| 44 | |||
| 45 | /** | ||
| 46 | * struct omap_device - omap_device wrapper for platform_devices | ||
| 47 | * @pdev: platform_device | ||
| 48 | * @hwmods: (one .. many per omap_device) | ||
| 49 | * @hwmods_cnt: ARRAY_SIZE() of @hwmods | ||
| 50 | * @pm_lats: ptr to an omap_device_pm_latency table | ||
| 51 | * @pm_lats_cnt: ARRAY_SIZE() of what is passed to @pm_lats | ||
| 52 | * @pm_lat_level: array index of the last odpl entry executed - -1 if never | ||
| 53 | * @dev_wakeup_lat: dev wakeup latency in microseconds | ||
| 54 | * @_dev_wakeup_lat_limit: dev wakeup latency limit in usec - set by OMAP PM | ||
| 55 | * @_state: one of OMAP_DEVICE_STATE_* (see above) | ||
| 56 | * @flags: device flags | ||
| 57 | * | ||
| 58 | * Integrates omap_hwmod data into Linux platform_device. | ||
| 59 | * | ||
| 60 | * Field names beginning with underscores are for the internal use of | ||
| 61 | * the omap_device code. | ||
| 62 | * | ||
| 63 | */ | ||
| 64 | struct omap_device { | ||
| 65 | struct platform_device pdev; | ||
| 66 | struct omap_hwmod **hwmods; | ||
| 67 | struct omap_device_pm_latency *pm_lats; | ||
| 68 | u32 dev_wakeup_lat; | ||
| 69 | u32 _dev_wakeup_lat_limit; | ||
| 70 | u8 pm_lats_cnt; | ||
| 71 | s8 pm_lat_level; | ||
| 72 | u8 hwmods_cnt; | ||
| 73 | u8 _state; | ||
| 74 | }; | ||
| 75 | |||
| 76 | /* Device driver interface (call via platform_data fn ptrs) */ | ||
| 77 | |||
| 78 | int omap_device_enable(struct platform_device *pdev); | ||
| 79 | int omap_device_idle(struct platform_device *pdev); | ||
| 80 | int omap_device_shutdown(struct platform_device *pdev); | ||
| 81 | |||
| 82 | /* Core code interface */ | ||
| 83 | |||
| 84 | int omap_device_count_resources(struct omap_device *od); | ||
| 85 | int omap_device_fill_resources(struct omap_device *od, struct resource *res); | ||
| 86 | |||
| 87 | struct omap_device *omap_device_build(const char *pdev_name, int pdev_id, | ||
| 88 | struct omap_hwmod *oh, void *pdata, | ||
| 89 | int pdata_len, | ||
| 90 | struct omap_device_pm_latency *pm_lats, | ||
| 91 | int pm_lats_cnt); | ||
| 92 | |||
| 93 | struct omap_device *omap_device_build_ss(const char *pdev_name, int pdev_id, | ||
| 94 | struct omap_hwmod **oh, int oh_cnt, | ||
| 95 | void *pdata, int pdata_len, | ||
| 96 | struct omap_device_pm_latency *pm_lats, | ||
| 97 | int pm_lats_cnt); | ||
| 98 | |||
| 99 | int omap_device_register(struct omap_device *od); | ||
| 100 | |||
| 101 | /* OMAP PM interface */ | ||
| 102 | int omap_device_align_pm_lat(struct platform_device *pdev, | ||
| 103 | u32 new_wakeup_lat_limit); | ||
| 104 | struct powerdomain *omap_device_get_pwrdm(struct omap_device *od); | ||
| 105 | |||
| 106 | /* Other */ | ||
| 107 | |||
| 108 | int omap_device_idle_hwmods(struct omap_device *od); | ||
| 109 | int omap_device_enable_hwmods(struct omap_device *od); | ||
| 110 | |||
| 111 | int omap_device_disable_clocks(struct omap_device *od); | ||
| 112 | int omap_device_enable_clocks(struct omap_device *od); | ||
| 113 | |||
| 114 | |||
| 115 | /* | ||
| 116 | * Entries should be kept in latency order ascending | ||
| 117 | * | ||
| 118 | * deact_lat is the maximum number of microseconds required to complete | ||
| 119 | * deactivate_func() at the device's slowest OPP. | ||
| 120 | * | ||
| 121 | * act_lat is the maximum number of microseconds required to complete | ||
| 122 | * activate_func() at the device's slowest OPP. | ||
| 123 | * | ||
| 124 | * This will result in some suboptimal power management decisions at fast | ||
| 125 | * OPPs, but avoids having to recompute all device power management decisions | ||
| 126 | * if the system shifts from a fast OPP to a slow OPP (in order to meet | ||
| 127 | * latency requirements). | ||
| 128 | * | ||
| 129 | * XXX should deactivate_func/activate_func() take platform_device pointers | ||
| 130 | * rather than omap_device pointers? | ||
| 131 | */ | ||
| 132 | struct omap_device_pm_latency { | ||
| 133 | u32 deactivate_lat; | ||
| 134 | int (*deactivate_func)(struct omap_device *od); | ||
| 135 | u32 activate_lat; | ||
| 136 | int (*activate_func)(struct omap_device *od); | ||
| 137 | }; | ||
| 138 | |||
| 139 | |||
| 140 | #endif | ||
| 141 | |||
diff --git a/arch/arm/plat-omap/omap_device.c b/arch/arm/plat-omap/omap_device.c new file mode 100644 index 000000000000..2c409fc6dd21 --- /dev/null +++ b/arch/arm/plat-omap/omap_device.c | |||
| @@ -0,0 +1,687 @@ | |||
| 1 | /* | ||
| 2 | * omap_device implementation | ||
| 3 | * | ||
| 4 | * Copyright (C) 2009 Nokia Corporation | ||
| 5 | * Paul Walmsley | ||
| 6 | * | ||
| 7 | * Developed in collaboration with (alphabetical order): Benoit | ||
| 8 | * Cousson, Kevin Hilman, Tony Lindgren, Rajendra Nayak, Vikram | ||
| 9 | * Pandita, Sakari Poussa, Anand Sawant, Santosh Shilimkar, Richard | ||
| 10 | * Woodruff | ||
| 11 | * | ||
| 12 | * This program is free software; you can redistribute it and/or modify | ||
| 13 | * it under the terms of the GNU General Public License version 2 as | ||
| 14 | * published by the Free Software Foundation. | ||
| 15 | * | ||
| 16 | * This code provides a consistent interface for OMAP device drivers | ||
| 17 | * to control power management and interconnect properties of their | ||
| 18 | * devices. | ||
| 19 | * | ||
| 20 | * In the medium- to long-term, this code should either be | ||
| 21 | * a) implemented via arch-specific pointers in platform_data | ||
| 22 | * or | ||
| 23 | * b) implemented as a proper omap_bus/omap_device in Linux, no more | ||
| 24 | * platform_data func pointers | ||
| 25 | * | ||
| 26 | * | ||
| 27 | * Guidelines for usage by driver authors: | ||
| 28 | * | ||
| 29 | * 1. These functions are intended to be used by device drivers via | ||
