diff options
| author | Olof Johansson <olof@lixom.net> | 2012-12-12 19:10:45 -0500 |
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2012-12-12 19:10:45 -0500 |
| commit | 9c7466b217af784280d9fc841bbd559ef3bf33e9 (patch) | |
| tree | c21ee243e48912201b4041fbf3f9bd9165603bd8 /include/linux | |
| parent | 4a76411ea3f1da9032e031f8fff8894b97d141b2 (diff) | |
| parent | 48d224d1efec98b0b78e511150b4f5752beceb7c (diff) | |
ARM: arm-soc: Merge branch 'next/pm2' into next/pm
Another smaller branch merged into next/pm before pull request.
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/clk/zynq.h | 24 | ||||
| -rw-r--r-- | include/linux/dma/ipu-dma.h | 177 | ||||
| -rw-r--r-- | include/linux/i2c-omap.h | 1 | ||||
| -rw-r--r-- | include/linux/of_address.h | 2 | ||||
| -rw-r--r-- | include/linux/omap-dma.h | 366 | ||||
| -rw-r--r-- | include/linux/platform_data/asoc-imx-ssi.h | 2 | ||||
| -rw-r--r-- | include/linux/platform_data/dma-imx.h | 4 | ||||
| -rw-r--r-- | include/linux/platform_data/dmtimer-omap.h | 31 | ||||
| -rw-r--r-- | include/linux/platform_data/gpio-omap.h | 1 | ||||
| -rw-r--r-- | include/linux/platform_data/uio_pruss.h | 3 | ||||
| -rw-r--r-- | include/linux/spi/ads7846.h | 5 | ||||
| -rw-r--r-- | include/linux/tegra-ahb.h | 19 |
12 files changed, 630 insertions, 5 deletions
diff --git a/include/linux/clk/zynq.h b/include/linux/clk/zynq.h new file mode 100644 index 000000000000..56be7cd9aa8b --- /dev/null +++ b/include/linux/clk/zynq.h | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2012 National Instruments | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | * You should have received a copy of the GNU General Public License | ||
| 15 | * along with this program; if not, write to the Free Software | ||
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 17 | */ | ||
| 18 | |||
| 19 | #ifndef __LINUX_CLK_ZYNQ_H_ | ||
| 20 | #define __LINUX_CLK_ZYNQ_H_ | ||
| 21 | |||
| 22 | void __init xilinx_zynq_clocks_init(void __iomem *slcr); | ||
| 23 | |||
| 24 | #endif | ||
diff --git a/include/linux/dma/ipu-dma.h b/include/linux/dma/ipu-dma.h new file mode 100644 index 000000000000..18031115c668 --- /dev/null +++ b/include/linux/dma/ipu-dma.h | |||
| @@ -0,0 +1,177 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2008 | ||
| 3 | * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de> | ||
| 4 | * | ||
| 5 | * Copyright (C) 2005-2007 Freescale Semiconductor, Inc. | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef __LINUX_DMA_IPU_DMA_H | ||
| 13 | #define __LINUX_DMA_IPU_DMA_H | ||
| 14 | |||
| 15 | #include <linux/types.h> | ||
| 16 | #include <linux/dmaengine.h> | ||
| 17 | |||
| 18 | /* IPU DMA Controller channel definitions. */ | ||
| 19 | enum ipu_channel { | ||
| 20 | IDMAC_IC_0 = 0, /* IC (encoding task) to memory */ | ||
| 21 | IDMAC_IC_1 = 1, /* IC (viewfinder task) to memory */ | ||
| 22 | IDMAC_ADC_0 = 1, | ||
| 23 | IDMAC_IC_2 = 2, | ||
| 24 | IDMAC_ADC_1 = 2, | ||
| 25 | IDMAC_IC_3 = 3, | ||
| 26 | IDMAC_IC_4 = 4, | ||
| 27 | IDMAC_IC_5 = 5, | ||
| 28 | IDMAC_IC_6 = 6, | ||
| 29 | IDMAC_IC_7 = 7, /* IC (sensor data) to memory */ | ||
| 30 | IDMAC_IC_8 = 8, | ||
| 31 | IDMAC_IC_9 = 9, | ||
| 32 | IDMAC_IC_10 = 10, | ||
| 33 | IDMAC_IC_11 = 11, | ||
| 34 | IDMAC_IC_12 = 12, | ||
| 35 | IDMAC_IC_13 = 13, | ||
| 36 | IDMAC_SDC_0 = 14, /* Background synchronous display data */ | ||
| 37 | IDMAC_SDC_1 = 15, /* Foreground data (overlay) */ | ||
| 38 | IDMAC_SDC_2 = 16, | ||
| 39 | IDMAC_SDC_3 = 17, | ||
| 40 | IDMAC_ADC_2 = 18, | ||
| 41 | IDMAC_ADC_3 = 19, | ||
| 42 | IDMAC_ADC_4 = 20, | ||
| 43 | IDMAC_ADC_5 = 21, | ||
| 44 | IDMAC_ADC_6 = 22, | ||
| 45 | IDMAC_ADC_7 = 23, | ||
| 46 | IDMAC_PF_0 = 24, | ||
| 47 | IDMAC_PF_1 = 25, | ||
| 48 | IDMAC_PF_2 = 26, | ||
| 49 | IDMAC_PF_3 = 27, | ||
| 50 | IDMAC_PF_4 = 28, | ||
| 51 | IDMAC_PF_5 = 29, | ||
| 52 | IDMAC_PF_6 = 30, | ||
| 53 | IDMAC_PF_7 = 31, | ||
| 54 | }; | ||
| 55 | |||
| 56 | /* Order significant! */ | ||
| 57 | enum ipu_channel_status { | ||
| 58 | IPU_CHANNEL_FREE, | ||
| 59 | IPU_CHANNEL_INITIALIZED, | ||
| 60 | IPU_CHANNEL_READY, | ||
| 61 | IPU_CHANNEL_ENABLED, | ||
| 62 | }; | ||
| 63 | |||
| 64 | #define IPU_CHANNELS_NUM 32 | ||
| 65 | |||
| 66 | enum pixel_fmt { | ||
| 67 | /* 1 byte */ | ||
| 68 | IPU_PIX_FMT_GENERIC, | ||
| 69 | IPU_PIX_FMT_RGB332, | ||
| 70 | IPU_PIX_FMT_YUV420P, | ||
| 71 | IPU_PIX_FMT_YUV422P, | ||
| 72 | IPU_PIX_FMT_YUV420P2, | ||
| 73 | IPU_PIX_FMT_YVU422P, | ||
| 74 | /* 2 bytes */ | ||
| 75 | IPU_PIX_FMT_RGB565, | ||
| 76 | IPU_PIX_FMT_RGB666, | ||
| 77 | IPU_PIX_FMT_BGR666, | ||
| 78 | IPU_PIX_FMT_YUYV, | ||
| 79 | IPU_PIX_FMT_UYVY, | ||
| 80 | /* 3 bytes */ | ||
| 81 | IPU_PIX_FMT_RGB24, | ||
| 82 | IPU_PIX_FMT_BGR24, | ||
| 83 | /* 4 bytes */ | ||
| 84 | IPU_PIX_FMT_GENERIC_32, | ||
| 85 | IPU_PIX_FMT_RGB32, | ||
| 86 | IPU_PIX_FMT_BGR32, | ||
| 87 | IPU_PIX_FMT_ABGR32, | ||
| 88 | IPU_PIX_FMT_BGRA32, | ||
| 89 | IPU_PIX_FMT_RGBA32, | ||
| 90 | }; | ||
| 91 | |||
| 92 | enum ipu_color_space { | ||
| 93 | IPU_COLORSPACE_RGB, | ||
| 94 | IPU_COLORSPACE_YCBCR, | ||
| 95 | IPU_COLORSPACE_YUV | ||
| 96 | }; | ||
| 97 | |||
| 98 | /* | ||
| 99 | * Enumeration of IPU rotation modes | ||
| 100 | */ | ||
| 101 | enum ipu_rotate_mode { | ||
| 102 | /* Note the enum values correspond to BAM value */ | ||
| 103 | IPU_ROTATE_NONE = 0, | ||
| 104 | IPU_ROTATE_VERT_FLIP = 1, | ||
| 105 | IPU_ROTATE_HORIZ_FLIP = 2, | ||
| 106 | IPU_ROTATE_180 = 3, | ||
| 107 | IPU_ROTATE_90_RIGHT = 4, | ||
| 108 | IPU_ROTATE_90_RIGHT_VFLIP = 5, | ||
| 109 | IPU_ROTATE_90_RIGHT_HFLIP = 6, | ||
| 110 | IPU_ROTATE_90_LEFT = 7, | ||
| 111 | }; | ||
| 112 | |||
| 113 | /* | ||
| 114 | * Enumeration of DI ports for ADC. | ||
| 115 | */ | ||
| 116 | enum display_port { | ||
| 117 | DISP0, | ||
| 118 | DISP1, | ||
| 119 | DISP2, | ||
| 120 | DISP3 | ||
| 121 | }; | ||
| 122 | |||
| 123 | struct idmac_video_param { | ||
| 124 | unsigned short in_width; | ||
| 125 | unsigned short in_height; | ||
| 126 | uint32_t in_pixel_fmt; | ||
| 127 | unsigned short out_width; | ||
| 128 | unsigned short out_height; | ||
| 129 | uint32_t out_pixel_fmt; | ||
| 130 | unsigned short out_stride; | ||
| 131 | bool graphics_combine_en; | ||
| 132 | bool global_alpha_en; | ||
| 133 | bool key_color_en; | ||
| 134 | enum display_port disp; | ||
| 135 | unsigned short out_left; | ||
| 136 | unsigned short out_top; | ||
| 137 | }; | ||
| 138 | |||
| 139 | /* | ||
| 140 | * Union of initialization parameters for a logical channel. So far only video | ||
| 141 | * parameters are used. | ||
| 142 | */ | ||
| 143 | union ipu_channel_param { | ||
| 144 | struct idmac_video_param video; | ||
| 145 | }; | ||
| 146 | |||
| 147 | struct idmac_tx_desc { | ||
| 148 | struct dma_async_tx_descriptor txd; | ||
| 149 | struct scatterlist *sg; /* scatterlist for this */ | ||
| 150 | unsigned int sg_len; /* tx-descriptor. */ | ||
| 151 | struct list_head list; | ||
| 152 | }; | ||
| 153 | |||
| 154 | struct idmac_channel { | ||
| 155 | struct dma_chan dma_chan; | ||
| 156 | dma_cookie_t completed; /* last completed cookie */ | ||
| 157 | union ipu_channel_param params; | ||
| 158 | enum ipu_channel link; /* input channel, linked to the output */ | ||
| 159 | enum ipu_channel_status status; | ||
| 160 | void *client; /* Only one client per channel */ | ||
| 161 | unsigned int n_tx_desc; | ||
| 162 | struct idmac_tx_desc *desc; /* allocated tx-descriptors */ | ||
| 163 | struct scatterlist *sg[2]; /* scatterlist elements in buffer-0 and -1 */ | ||
| 164 | struct list_head free_list; /* free tx-descriptors */ | ||
| 165 | struct list_head queue; /* queued tx-descriptors */ | ||
| 166 | spinlock_t lock; /* protects sg[0,1], queue */ | ||
| 167 | struct mutex chan_mutex; /* protects status, cookie, free_list */ | ||
| 168 | bool sec_chan_en; | ||
| 169 | int active_buffer; | ||
| 170 | unsigned int eof_irq; | ||
| 171 | char eof_name[16]; /* EOF IRQ name for request_irq() */ | ||
| 172 | }; | ||
| 173 | |||
| 174 | #define to_tx_desc(tx) container_of(tx, struct idmac_tx_desc, txd) | ||
| 175 | #define to_idmac_chan(c) container_of(c, struct idmac_channel, dma_chan) | ||
| 176 | |||
| 177 | #endif /* __LINUX_DMA_IPU_DMA_H */ | ||
diff --git a/include/linux/i2c-omap.h b/include/linux/i2c-omap.h index df804ba73e0b..92a0dc75bc74 100644 --- a/include/linux/i2c-omap.h +++ b/include/linux/i2c-omap.h | |||
| @@ -34,6 +34,7 @@ struct omap_i2c_bus_platform_data { | |||
| 34 | u32 clkrate; | 34 | u32 clkrate; |
| 35 | u32 rev; | 35 | u32 rev; |
| 36 | u32 flags; | 36 | u32 flags; |
| 37 | void (*set_mpu_wkup_lat)(struct device *dev, long set); | ||
| 37 | }; | 38 | }; |
| 38 | 39 | ||
| 39 | #endif | 40 | #endif |
diff --git a/include/linux/of_address.h b/include/linux/of_address.h index e20e3af68fb6..0506eb53519b 100644 --- a/include/linux/of_address.h +++ b/include/linux/of_address.h | |||
| @@ -42,10 +42,12 @@ static inline struct device_node *of_find_matching_node_by_address( | |||
| 42 | { | 42 | { |
| 43 | return NULL; | 43 | return NULL; |
| 44 | } | 44 | } |
| 45 | #ifndef of_iomap | ||
| 45 | static inline void __iomem *of_iomap(struct device_node *device, int index) | 46 | static inline void __iomem *of_iomap(struct device_node *device, int index) |
| 46 | { | 47 | { |
| 47 | return NULL; | 48 | return NULL; |
| 48 | } | 49 | } |
| 50 | #endif | ||
| 49 | static inline const __be32 *of_get_address(struct device_node *dev, int index, | 51 | static inline const __be32 *of_get_address(struct device_node *dev, int index, |
| 50 | u64 *size, unsigned int *flags) | 52 | u64 *size, unsigned int *flags) |
| 51 | { | 53 | { |
diff --git a/include/linux/omap-dma.h b/include/linux/omap-dma.h index eb475a8ea25b..7af25a9c9c51 100644 --- a/include/linux/omap-dma.h +++ b/include/linux/omap-dma.h | |||
| @@ -19,4 +19,370 @@ static inline bool omap_dma_filter_fn(struct dma_chan *c, void *d) | |||
| 19 | } | 19 | } |
| 20 | #endif | 20 | #endif |
| 21 | 21 | ||
| 22 | /* | ||
| 23 | * Legacy OMAP DMA handling defines and functions | ||
| 24 | * | ||
| 25 | * NOTE: Do not use these any longer. | ||
| 26 | * | ||
| 27 | * Use the generic dmaengine functions as defined in | ||
| 28 | * include/linux/dmaengine.h. | ||
| 29 | * | ||
| 30 | * Copyright (C) 2003 Nokia Corporation | ||
| 31 | * Author: Juha Yrjölä <juha.yrjola@nokia.com> | ||
| 32 | * | ||
| 33 | */ | ||
| 34 | |||
| 35 | #include <linux/platform_device.h> | ||
| 36 | |||
| 37 | #define INT_DMA_LCD 25 | ||
| 38 | |||
| 39 | #define OMAP1_DMA_TOUT_IRQ (1 << 0) | ||
| 40 | #define OMAP_DMA_DROP_IRQ (1 << 1) | ||
| 41 | #define OMAP_DMA_HALF_IRQ (1 << 2) | ||
| 42 | #define OMAP_DMA_FRAME_IRQ (1 << 3) | ||
| 43 | #define OMAP_DMA_LAST_IRQ (1 << 4) | ||
| 44 | #define OMAP_DMA_BLOCK_IRQ (1 << 5) | ||
| 45 | #define OMAP1_DMA_SYNC_IRQ (1 << 6) | ||
| 46 | #define OMAP2_DMA_PKT_IRQ (1 << 7) | ||
| 47 | #define OMAP2_DMA_TRANS_ERR_IRQ (1 << 8) | ||
| 48 | #define OMAP2_DMA_SECURE_ERR_IRQ (1 << 9) | ||
| 49 | #define OMAP2_DMA_SUPERVISOR_ERR_IRQ (1 << 10) | ||
| 50 | #define OMAP2_DMA_MISALIGNED_ERR_IRQ (1 << 11) | ||
| 51 | |||
| 52 | #define OMAP_DMA_CCR_EN (1 << 7) | ||
| 53 | #define OMAP_DMA_CCR_RD_ACTIVE (1 << 9) | ||
| 54 | #define OMAP_DMA_CCR_WR_ACTIVE (1 << 10) | ||
| 55 | #define OMAP_DMA_CCR_SEL_SRC_DST_SYNC (1 << 24) | ||
| 56 | #define OMAP_DMA_CCR_BUFFERING_DISABLE (1 << 25) | ||
| 57 | |||
| 58 | #define OMAP_DMA_DATA_TYPE_S8 0x00 | ||
| 59 | #define OMAP_DMA_DATA_TYPE_S16 0x01 | ||
| 60 | #define OMAP_DMA_DATA_TYPE_S32 0x02 | ||
| 61 | |||
| 62 | #define OMAP_DMA_SYNC_ELEMENT 0x00 | ||
| 63 | #define OMAP_DMA_SYNC_FRAME 0x01 | ||
| 64 | #define OMAP_DMA_SYNC_BLOCK 0x02 | ||
| 65 | #define OMAP_DMA_SYNC_PACKET 0x03 | ||
| 66 | |||
| 67 | #define OMAP_DMA_DST_SYNC_PREFETCH 0x02 | ||
| 68 | #define OMAP_DMA_SRC_SYNC 0x01 | ||
| 69 | #define OMAP_DMA_DST_SYNC 0x00 | ||
| 70 | |||
| 71 | #define OMAP_DMA_PORT_EMIFF 0x00 | ||
| 72 | #define OMAP_DMA_PORT_EMIFS 0x01 | ||
| 73 | #define OMAP_DMA_PORT_OCP_T1 0x02 | ||
| 74 | #define OMAP_DMA_PORT_TIPB 0x03 | ||
| 75 | #define OMAP_DMA_PORT_OCP_T2 0x04 | ||
| 76 | #define OMAP_DMA_PORT_MPUI 0x05 | ||
| 77 | |||
| 78 | #define OMAP_DMA_AMODE_CONSTANT 0x00 | ||
| 79 | #define OMAP_DMA_AMODE_POST_INC 0x01 | ||
| 80 | #define OMAP_DMA_AMODE_SINGLE_IDX 0x02 | ||
| 81 | #define OMAP_DMA_AMODE_DOUBLE_IDX 0x03 | ||
| 82 | |||
| 83 | #define DMA_DEFAULT_FIFO_DEPTH 0x10 | ||
| 84 | #define DMA_DEFAULT_ARB_RATE 0x01 | ||
| 85 | /* Pass THREAD_RESERVE ORed with THREAD_FIFO for tparams */ | ||
| 86 | #define DMA_THREAD_RESERVE_NORM (0x00 << 12) /* Def */ | ||
| 87 | #define DMA_THREAD_RESERVE_ONET (0x01 << 12) | ||
| 88 | #define DMA_THREAD_RESERVE_TWOT (0x02 << 12) | ||
| 89 | #define DMA_THREAD_RESERVE_THREET (0x03 << 12) | ||
| 90 | #define DMA_THREAD_FIFO_NONE (0x00 << 14) /* Def */ | ||
| 91 | #define DMA_THREAD_FIFO_75 (0x01 << 14) | ||
| 92 | #define DMA_THREAD_FIFO_25 (0x02 << 14) | ||
| 93 | #define DMA_THREAD_FIFO_50 (0x03 << 14) | ||
| 94 | |||
| 95 | /* DMA4_OCP_SYSCONFIG bits */ | ||
| 96 | #define DMA_SYSCONFIG_MIDLEMODE_MASK (3 << 12) | ||
| 97 | #define DMA_SYSCONFIG_CLOCKACTIVITY_MASK (3 << 8) | ||
| 98 | #define DMA_SYSCONFIG_EMUFREE (1 << 5) | ||
| 99 | #define DMA_SYSCONFIG_SIDLEMODE_MASK (3 << 3) | ||
| 100 | #define DMA_SYSCONFIG_SOFTRESET (1 << 2) | ||
| 101 | #define DMA_SYSCONFIG_AUTOIDLE (1 << 0) | ||
| 102 | |||
| 103 | #define DMA_SYSCONFIG_MIDLEMODE(n) ((n) << 12) | ||
| 104 | #define DMA_SYSCONFIG_SIDLEMODE(n) ((n) << 3) | ||
| 105 | |||
| 106 | #define DMA_IDLEMODE_SMARTIDLE 0x2 | ||
| 107 | #define DMA_IDLEMODE_NO_IDLE 0x1 | ||
| 108 | #define DMA_IDLEMODE_FORCE_IDLE 0x0 | ||
| 109 | |||
| 110 | /* Chaining modes*/ | ||
| 111 | #ifndef CONFIG_ARCH_OMAP1 | ||
| 112 | #define OMAP_DMA_STATIC_CHAIN 0x1 | ||
| 113 | #define OMAP_DMA_DYNAMIC_CHAIN 0x2 | ||
| 114 | #define OMAP_DMA_CHAIN_ACTIVE 0x1 | ||
| 115 | #define OMAP_DMA_CHAIN_INACTIVE 0x0 | ||
| 116 | #endif | ||
| 117 | |||
| 118 | #define DMA_CH_PRIO_HIGH 0x1 | ||
| 119 | #define DMA_CH_PRIO_LOW 0x0 /* Def */ | ||
| 120 | |||
| 121 | /* Errata handling */ | ||
| 122 | #define IS_DMA_ERRATA(id) (errata & (id)) | ||
| 123 | #define SET_DMA_ERRATA(id) (errata |= (id)) | ||
| 124 | |||
| 125 | #define DMA_ERRATA_IFRAME_BUFFERING BIT(0x0) | ||
| 126 | #define DMA_ERRATA_PARALLEL_CHANNELS BIT(0x1) | ||
| 127 | #define DMA_ERRATA_i378 BIT(0x2) | ||
| 128 | #define DMA_ERRATA_i541 BIT(0x3) | ||
| 129 | #define DMA_ERRATA_i88 BIT(0x4) | ||
| 130 | #define DMA_ERRATA_3_3 BIT(0x5) | ||
| 131 | #define DMA_ROMCODE_BUG BIT(0x6) | ||
| 132 | |||
| 133 | /* Attributes for OMAP DMA Contrller */ | ||
| 134 | #define DMA_LINKED_LCH BIT(0x0) | ||
| 135 | #define GLOBAL_PRIORITY BIT(0x1) | ||
| 136 | #define RESERVE_CHANNEL BIT(0x2) | ||
| 137 | #define IS_CSSA_32 BIT(0x3) | ||
| 138 | #define IS_CDSA_32 BIT(0x4) | ||
| 139 | #define IS_RW_PRIORITY BIT(0x5) | ||
| 140 | #define ENABLE_1510_MODE BIT(0x6) | ||
| 141 | #define SRC_PORT BIT(0x7) | ||
| 142 | #define DST_PORT BIT(0x8) | ||
| 143 | #define SRC_INDEX BIT(0x9) | ||
| 144 | #define DST_INDEX BIT(0xa) | ||
| 145 | #define IS_BURST_ONLY4 BIT(0xb) | ||
| 146 | #define CLEAR_CSR_ON_READ BIT(0xc) | ||
| 147 | #define IS_WORD_16 BIT(0xd) | ||
| 148 | #define ENABLE_16XX_MODE BIT(0xe) | ||
| 149 | #define HS_CHANNELS_RESERVED BIT(0xf) | ||
| 150 | |||
| 151 | /* Defines for DMA Capabilities */ | ||
| 152 | #define DMA_HAS_TRANSPARENT_CAPS (0x1 << 18) | ||
| 153 | #define DMA_HAS_CONSTANT_FILL_CAPS (0x1 << 19) | ||
| 154 | #define DMA_HAS_DESCRIPTOR_CAPS (0x3 << 20) | ||
| 155 | |||
| 156 | enum omap_reg_offsets { | ||
| 157 | |||
| 158 | GCR, GSCR, GRST1, HW_ID, | ||
| 159 | PCH2_ID, PCH0_ID, PCH1_ID, PCHG_ID, | ||
| 160 | PCHD_ID, CAPS_0, CAPS_1, CAPS_2, | ||
| 161 | CAPS_3, CAPS_4, PCH2_SR, PCH0_SR, | ||
| 162 | PCH1_SR, PCHD_SR, REVISION, IRQSTATUS_L0, | ||
| 163 | IRQSTATUS_L1, IRQSTATUS_L2, IRQSTATUS_L3, IRQENABLE_L0, | ||
| 164 | IRQENABLE_L1, IRQENABLE_L2, IRQENABLE_L3, SYSSTATUS, | ||
| 165 | OCP_SYSCONFIG, | ||
| 166 | |||
| 167 | /* omap1+ specific */ | ||
| 168 | CPC, CCR2, LCH_CTRL, | ||
| 169 | |||
| 170 | /* Common registers for all omap's */ | ||
| 171 | CSDP, CCR, CICR, CSR, | ||
| 172 | CEN, CFN, CSFI, CSEI, | ||
| 173 | CSAC, CDAC, CDEI, | ||
| 174 | CDFI, CLNK_CTRL, | ||
| 175 | |||
| 176 | /* Channel specific registers */ | ||
| 177 | CSSA, CDSA, COLOR, | ||
| 178 | CCEN, CCFN, | ||
| 179 | |||
| 180 | /* omap3630 and omap4 specific */ | ||
| 181 | CDP, CNDP, CCDN, | ||
| 182 | |||
| 183 | }; | ||
| 184 | |||
| 185 | enum omap_dma_burst_mode { | ||
| 186 | OMAP_DMA_DATA_BURST_DIS = 0, | ||
| 187 | OMAP_DMA_DATA_BURST_4, | ||
| 188 | OMAP_DMA_DATA_BURST_8, | ||
| 189 | OMAP_DMA_DATA_BURST_16, | ||
| 190 | }; | ||
| 191 | |||
| 192 | enum end_type { | ||
| 193 | OMAP_DMA_LITTLE_ENDIAN = 0, | ||
| 194 | OMAP_DMA_BIG_ENDIAN | ||
| 195 | }; | ||
| 196 | |||
| 197 | enum omap_dma_color_mode { | ||
| 198 | OMAP_DMA_COLOR_DIS = 0, | ||
| 199 | OMAP_DMA_CONSTANT_FILL, | ||
| 200 | OMAP_DMA_TRANSPARENT_COPY | ||
| 201 | }; | ||
| 202 | |||
| 203 | enum omap_dma_write_mode { | ||
| 204 | OMAP_DMA_WRITE_NON_POSTED = 0, | ||
| 205 | OMAP_DMA_WRITE_POSTED, | ||
| 206 | OMAP_DMA_WRITE_LAST_NON_POSTED | ||
| 207 | }; | ||
| 208 | |||
| 209 | enum omap_dma_channel_mode { | ||
| 210 | OMAP_DMA_LCH_2D = 0, | ||
| 211 | OMAP_DMA_LCH_G, | ||
| 212 | OMAP_DMA_LCH_P, | ||
| 213 | OMAP_DMA_LCH_PD | ||
| 214 | }; | ||
| 215 | |||
| 216 | struct omap_dma_channel_params { | ||
| 217 | int data_type; /* data type 8,16,32 */ | ||
| 218 | int elem_count; /* number of elements in a frame */ | ||
| 219 | int frame_count; /* number of frames in a element */ | ||
| 220 | |||
| 221 | int src_port; /* Only on OMAP1 REVISIT: Is this needed? */ | ||
| 222 | int src_amode; /* constant, post increment, indexed, | ||
| 223 | double indexed */ | ||
| 224 | unsigned long src_start; /* source address : physical */ | ||
| 225 | int src_ei; /* source element index */ | ||
| 226 | int src_fi; /* source frame index */ | ||
| 227 | |||
| 228 | int dst_port; /* Only on OMAP1 REVISIT: Is this needed? */ | ||
| 229 | int dst_amode; /* constant, post increment, indexed, | ||
| 230 | double indexed */ | ||
| 231 | unsigned long dst_start; /* source address : physical */ | ||
| 232 | int dst_ei; /* source element index */ | ||
| 233 | int dst_fi; /* source frame index */ | ||
| 234 | |||
| 235 | int trigger; /* trigger attached if the channel is | ||
| 236 | synchronized */ | ||
| 237 | int sync_mode; /* sycn on element, frame , block or packet */ | ||
| 238 | int src_or_dst_synch; /* source synch(1) or destination synch(0) */ | ||
| 239 | |||
| 240 | int ie; /* interrupt enabled */ | ||
| 241 | |||
| 242 | unsigned char read_prio;/* read priority */ | ||
| 243 | unsigned char write_prio;/* write priority */ | ||
| 244 | |||
| 245 | #ifndef CONFIG_ARCH_OMAP1 | ||
| 246 | enum omap_dma_burst_mode burst_mode; /* Burst mode 4/8/16 words */ | ||
| 247 | #endif | ||
| 248 | }; | ||
| 249 | |||
| 250 | struct omap_dma_lch { | ||
| 251 | int next_lch; | ||
| 252 | int dev_id; | ||
| 253 | u16 saved_csr; | ||
| 254 | u16 enabled_irqs; | ||
| 255 | const char *dev_name; | ||
| 256 | void (*callback)(int lch, u16 ch_status, void *data); | ||
| 257 | void *data; | ||
| 258 | long flags; | ||
| 259 | /* required for Dynamic chaining */ | ||
| 260 | int prev_linked_ch; | ||
| 261 | int next_linked_ch; | ||
| 262 | int state; | ||
| 263 | int chain_id; | ||
| 264 | int status; | ||
| 265 | }; | ||
| 266 | |||
| 267 | struct omap_dma_dev_attr { | ||
| 268 | u32 dev_caps; | ||
| 269 | u16 lch_count; | ||
| 270 | u16 chan_count; | ||
| 271 | struct omap_dma_lch *chan; | ||
| 272 | }; | ||
| 273 | |||
| 274 | /* System DMA platform data structure */ | ||
| 275 | struct omap_system_dma_plat_info { | ||
| 276 | struct omap_dma_dev_attr *dma_attr; | ||
| 277 | u32 errata; | ||
| 278 | void (*disable_irq_lch)(int lch); | ||
| 279 | void (*show_dma_caps)(void); | ||
| 280 | void (*clear_lch_regs)(int lch); | ||
| 281 | void (*clear_dma)(int lch); | ||
| 282 | void (*dma_write)(u32 val, int reg, int lch); | ||
| 283 | u32 (*dma_read)(int reg, int lch); | ||
| 284 | }; | ||
| 285 | |||
| 286 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
| 287 | #define dma_omap2plus() 1 | ||
| 288 | #else | ||
| 289 | #define dma_omap2plus() 0 | ||
| 22 | #endif | 290 | #endif |
| 291 | #define dma_omap1() (!dma_omap2plus()) | ||
| 292 | #define dma_omap15xx() ((dma_omap1() && (d->dev_caps & ENABLE_1510_MODE))) | ||
| 293 | #define dma_omap16xx() ((dma_omap1() && (d->dev_caps & ENABLE_16XX_MODE))) | ||
| 294 | |||
| 295 | extern void omap_set_dma_priority(int lch, int dst_port, int priority); | ||
| 296 | extern int omap_request_dma(int dev_id, const char *dev_name, | ||
| 297 | void (*callback)(int lch, u16 ch_status, void *data), | ||
| 298 | void *data, int *dma_ch); | ||
| 299 | extern void omap_enable_dma_irq(int ch, u16 irq_bits); | ||
| 300 | extern void omap_disable_dma_irq(int ch, u16 irq_bits); | ||
| 301 | extern void omap_free_dma(int ch); | ||
| 302 | extern void omap_start_dma(int lch); | ||
| 303 | extern void omap_stop_dma(int lch); | ||
| 304 | extern void omap_set_dma_transfer_params(int lch, int data_type, | ||
| 305 | int elem_count, int frame_count, | ||
| 306 | int sync_mode, | ||
| 307 | int dma_trigger, int src_or_dst_synch); | ||
| 308 | extern void omap_set_dma_color_mode(int lch, enum omap_dma_color_mode mode, | ||
| 309 | u32 color); | ||
| 310 | extern void omap_set_dma_write_mode(int lch, enum omap_dma_write_mode mode); | ||
| 311 | extern void omap_set_dma_channel_mode(int lch, enum omap_dma_channel_mode mode); | ||
| 312 | |||
| 313 | extern void omap_set_dma_src_params(int lch, int src_port, int src_amode, | ||
| 314 | unsigned long src_start, | ||
| 315 | int src_ei, int src_fi); | ||
| 316 | extern void omap_set_dma_src_index(int lch, int eidx, int fidx); | ||
| 317 | extern void omap_set_dma_src_data_pack(int lch, int enable); | ||
| 318 | extern void omap_set_dma_src_burst_mode(int lch, | ||
| 319 | enum omap_dma_burst_mode burst_mode); | ||
| 320 | |||
| 321 | extern void omap_set_dma_dest_params(int lch, int dest_port, int dest_amode, | ||
| 322 | unsigned long dest_start, | ||
| 323 | int dst_ei, int dst_fi); | ||
| 324 | extern void omap_set_dma_dest_index(int lch, int eidx, int fidx); | ||
| 325 | extern void omap_set_dma_dest_data_pack(int lch, int enable); | ||
| 326 | extern void omap_set_dma_dest_burst_mode(int lch, | ||
| 327 | enum omap_dma_burst_mode burst_mode); | ||
| 328 | |||
| 329 | extern void omap_set_dma_params(int lch, | ||
| 330 | struct omap_dma_channel_params *params); | ||
| 331 | |||
| 332 | extern void omap_dma_link_lch(int lch_head, int lch_queue); | ||
| 333 | extern void omap_dma_unlink_lch(int lch_head, int lch_queue); | ||
| 334 | |||
| 335 | extern int omap_set_dma_callback(int lch, | ||
| 336 | void (*callback)(int lch, u16 ch_status, void *data), | ||
| 337 | void *data); | ||
| 338 | extern dma_addr_t omap_get_dma_src_pos(int lch); | ||
| 339 | extern dma_addr_t omap_get_dma_dst_pos(int lch); | ||
| 340 | extern void omap_clear_dma(int lch); | ||
| 341 | extern int omap_get_dma_active_status(int lch); | ||
| 342 | extern int omap_dma_running(void); | ||
| 343 | extern void omap_dma_set_global_params(int arb_rate, int max_fifo_depth, | ||
| 344 | int tparams); | ||
| 345 | extern int omap_dma_set_prio_lch(int lch, unsigned char read_prio, | ||
| 346 | unsigned char write_prio); | ||
| 347 | extern void omap_set_dma_dst_endian_type(int lch, enum end_type etype); | ||
| 348 | extern void omap_set_dma_src_endian_type(int lch, enum end_type etype); | ||
| 349 | extern int omap_get_dma_index(int lch, int *ei, int *fi); | ||
| 350 | |||
| 351 | void omap_dma_global_context_save(void); | ||
| 352 | void omap_dma_global_context_restore(void); | ||
| 353 | |||
| 354 | extern void omap_dma_disable_irq(int lch); | ||
| 355 | |||
| 356 | /* Chaining APIs */ | ||
| 357 | #ifndef CONFIG_ARCH_OMAP1 | ||
| 358 | extern int omap_request_dma_chain(int dev_id, const char *dev_name, | ||
| 359 | void (*callback) (int lch, u16 ch_status, | ||
| 360 | void *data), | ||
| 361 | int *chain_id, int no_of_chans, | ||
| 362 | int chain_mode, | ||
| 363 | struct omap_dma_channel_params params); | ||
| 364 | extern int omap_free_dma_chain(int chain_id); | ||
| 365 | extern int omap_dma_chain_a_transfer(int chain_id, int src_start, | ||
| 366 | int dest_start, int elem_count, | ||
| 367 | int frame_count, void *callbk_data); | ||
| 368 | extern int omap_start_dma_chain_transfers(int chain_id); | ||
| 369 | extern int omap_stop_dma_chain_transfers(int chain_id); | ||
| 370 | extern int omap_get_dma_chain_index(int chain_id, int *ei, int *fi); | ||
| 371 | extern int omap_get_dma_chain_dst_pos(int chain_id); | ||
| 372 | extern int omap_get_dma_chain_src_pos(int chain_id); | ||
| 373 | |||
| 374 | extern int omap_modify_dma_chain_params(int chain_id, | ||
| 375 | struct omap_dma_channel_params params); | ||
| 376 | extern int omap_dma_chain_status(int chain_id); | ||
| 377 | #endif | ||
| 378 | |||
| 379 | #if defined(CONFIG_ARCH_OMAP1) && defined(CONFIG_FB_OMAP) | ||
| 380 | #include <mach/lcd_dma.h> | ||
| 381 | #else | ||
| 382 | static inline int omap_lcd_dma_running(void) | ||
| 383 | { | ||
| 384 | return 0; | ||
| 385 | } | ||
| 386 | #endif | ||
| 387 | |||
| 388 | #endif /* __LINUX_OMAP_DMA_H */ | ||
diff --git a/include/linux/platform_data/asoc-imx-ssi.h b/include/linux/platform_data/asoc-imx-ssi.h index 63f3c2804239..92c7fd72f636 100644 --- a/include/linux/platform_data/asoc-imx-ssi.h +++ b/include/linux/platform_data/asoc-imx-ssi.h | |||
| @@ -17,5 +17,7 @@ struct imx_ssi_platform_data { | |||
| 17 | void (*ac97_warm_reset)(struct snd_ac97 *ac97); | 17 | void (*ac97_warm_reset)(struct snd_ac97 *ac97); |
| 18 | }; | 18 | }; |
| 19 | 19 | ||
| 20 | extern int mxc_set_irq_fiq(unsigned int irq, unsigned int type); | ||
| 21 | |||
| 20 | #endif /* __MACH_SSI_H */ | 22 | #endif /* __MACH_SSI_H */ |
| 21 | 23 | ||
diff --git a/include/linux/platform_data/dma-imx.h b/include/linux/platform_data/dma-imx.h index 1b9080385b46..f6d30cc1cb77 100644 --- a/include/linux/platform_data/dma-imx.h +++ b/include/linux/platform_data/dma-imx.h | |||
| @@ -61,7 +61,9 @@ static inline int imx_dma_is_ipu(struct dma_chan *chan) | |||
| 61 | static inline int imx_dma_is_general_purpose(struct dma_chan *chan) | 61 | static inline int imx_dma_is_general_purpose(struct dma_chan *chan) |
| 62 | { | 62 | { |
| 63 | return strstr(dev_name(chan->device->dev), "sdma") || | 63 | return strstr(dev_name(chan->device->dev), "sdma") || |
| 64 | !strcmp(dev_name(chan->device->dev), "imx-dma"); | 64 | !strcmp(dev_name(chan->device->dev), "imx1-dma") || |
| 65 | !strcmp(dev_name(chan->device->dev), "imx21-dma") || | ||
| 66 | !strcmp(dev_name(chan->device->dev), "imx27-dma"); | ||
| 65 | } | 67 | } |
| 66 | 68 | ||
| 67 | #endif | 69 | #endif |
diff --git a/include/linux/platform_data/dmtimer-omap.h b/include/linux/platform_data/dmtimer-omap.h new file mode 100644 index 000000000000..a19b78d826e9 --- /dev/null +++ b/include/linux/platform_data/dmtimer-omap.h | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | /* | ||
| 2 | * DMTIMER platform data for TI OMAP platforms | ||
| 3 | * | ||
| 4 | * Copyright (C) 2012 Texas Instruments | ||
| 5 | * Author: Jon Hunter <jon-hunter@ti.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License version 2 as published by | ||
| 9 | * the Free Software Foundation. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
| 12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| 14 | * more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License along with | ||
| 17 | * this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 18 | */ | ||
| 19 | |||
| 20 | #ifndef __PLATFORM_DATA_DMTIMER_OMAP_H__ | ||
| 21 | #define __PLATFORM_DATA_DMTIMER_OMAP_H__ | ||
| 22 | |||
| 23 | struct dmtimer_platform_data { | ||
| 24 | /* set_timer_src - Only used for OMAP1 devices */ | ||
| 25 | int (*set_timer_src)(struct platform_device *pdev, int source); | ||
| 26 | u32 timer_capability; | ||
| 27 | u32 timer_errata; | ||
| 28 | int (*get_context_loss_count)(struct device *); | ||
| 29 | }; | ||
| 30 | |||
| 31 | #endif /* __PLATFORM_DATA_DMTIMER_OMAP_H__ */ | ||
diff --git a/include/linux/platform_data/gpio-omap.h b/include/linux/platform_data/gpio-omap.h index e8741c2678d5..5d50b25a73d7 100644 --- a/include/linux/platform_data/gpio-omap.h +++ b/include/linux/platform_data/gpio-omap.h | |||
| @@ -26,7 +26,6 @@ | |||
| 26 | 26 | ||
| 27 | #include <linux/io.h> | 27 | #include <linux/io.h> |
| 28 | #include <linux/platform_device.h> | 28 | #include <linux/platform_device.h> |
| 29 | #include <mach/irqs.h> | ||
| 30 | 29 | ||
| 31 | #define OMAP1_MPUIO_BASE 0xfffb5000 | 30 | #define OMAP1_MPUIO_BASE 0xfffb5000 |
| 32 | 31 | ||
diff --git a/include/linux/platform_data/uio_pruss.h b/include/linux/platform_data/uio_pruss.h index f39140aabc6f..3d47d219827f 100644 --- a/include/linux/platform_data/uio_pruss.h +++ b/include/linux/platform_data/uio_pruss.h | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | 20 | ||
| 21 | /* To configure the PRUSS INTC base offset for UIO driver */ | 21 | /* To configure the PRUSS INTC base offset for UIO driver */ |
| 22 | struct uio_pruss_pdata { | 22 | struct uio_pruss_pdata { |
| 23 | u32 pintc_base; | 23 | u32 pintc_base; |
| 24 | struct gen_pool *sram_pool; | ||
| 24 | }; | 25 | }; |
| 25 | #endif /* _UIO_PRUSS_H_ */ | 26 | #endif /* _UIO_PRUSS_H_ */ |
diff --git a/include/linux/spi/ads7846.h b/include/linux/spi/ads7846.h index c64de9dd7631..2f694f3846a9 100644 --- a/include/linux/spi/ads7846.h +++ b/include/linux/spi/ads7846.h | |||
| @@ -46,8 +46,9 @@ struct ads7846_platform_data { | |||
| 46 | u16 debounce_rep; /* additional consecutive good readings | 46 | u16 debounce_rep; /* additional consecutive good readings |
| 47 | * required after the first two */ | 47 | * required after the first two */ |
| 48 | int gpio_pendown; /* the GPIO used to decide the pendown | 48 | int gpio_pendown; /* the GPIO used to decide the pendown |
| 49 | * state if get_pendown_state == NULL | 49 | * state if get_pendown_state == NULL */ |
| 50 | */ | 50 | int gpio_pendown_debounce; /* platform specific debounce time for |
| 51 | * the gpio_pendown */ | ||
| 51 | int (*get_pendown_state)(void); | 52 | int (*get_pendown_state)(void); |
| 52 | int (*filter_init) (const struct ads7846_platform_data *pdata, | 53 | int (*filter_init) (const struct ads7846_platform_data *pdata, |
| 53 | void **filter_data); | 54 | void **filter_data); |
diff --git a/include/linux/tegra-ahb.h b/include/linux/tegra-ahb.h new file mode 100644 index 000000000000..f1cd075ceee1 --- /dev/null +++ b/include/linux/tegra-ahb.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify it | ||
| 5 | * under the terms and conditions of the GNU General Public License, | ||
| 6 | * version 2, as published by the Free Software Foundation. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
| 11 | * more details. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef __LINUX_AHB_H__ | ||
| 15 | #define __LINUX_AHB_H__ | ||
| 16 | |||
| 17 | extern int tegra_ahb_enable_smmu(struct device_node *ahb); | ||
| 18 | |||
| 19 | #endif /* __LINUX_AHB_H__ */ | ||
