Joel Nider | b9662ca | 2012-06-10 14:21:11 +0300 | [diff] [blame^] | 1 | /* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved. |
Joel Nider | 5556a85 | 2011-10-16 10:52:13 +0200 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/module.h> /* Needed by all modules */ |
| 14 | #include <linux/kernel.h> /* Needed for KERN_INFO */ |
| 15 | #include <linux/init.h> /* Needed for the macros */ |
| 16 | #include <linux/cdev.h> |
| 17 | #include <linux/err.h> /* IS_ERR */ |
| 18 | #include <linux/fs.h> |
| 19 | #include <linux/device.h> |
| 20 | #include <linux/sched.h> /* TASK_INTERRUPTIBLE */ |
| 21 | #include <linux/uaccess.h> /* copy_to_user */ |
| 22 | #include <linux/platform_device.h> |
| 23 | #include <linux/pm_runtime.h> |
| 24 | #include <linux/slab.h> /* kfree, kzalloc */ |
| 25 | #include <linux/wakelock.h> |
| 26 | #include <linux/io.h> /* ioXXX */ |
| 27 | #include <linux/ioport.h> /* XXX_ mem_region */ |
| 28 | #include <linux/dma-mapping.h> /* dma_XXX */ |
| 29 | #include <linux/delay.h> /* msleep */ |
| 30 | #include <linux/clk.h> |
| 31 | #include <linux/poll.h> /* poll() file op */ |
| 32 | #include <linux/wait.h> /* wait() macros, sleeping */ |
| 33 | #include <linux/tspp.h> /* tspp functions */ |
| 34 | #include <linux/bitops.h> /* BIT() macro */ |
| 35 | #include <mach/sps.h> /* BAM stuff */ |
| 36 | #include <mach/gpio.h> |
| 37 | #include <mach/dma.h> |
| 38 | #include <mach/msm_tspp.h> |
| 39 | |
| 40 | #define TSPP_USE_DEBUGFS |
| 41 | #ifdef TSPP_USE_DEBUGFS |
| 42 | #include <linux/debugfs.h> |
| 43 | #endif /* TSPP_USE_DEBUGFS */ |
| 44 | |
| 45 | /* |
| 46 | * General defines |
| 47 | */ |
| 48 | #define TSPP_USE_DMA_ALLOC_COHERENT |
| 49 | #define TSPP_TSIF_INSTANCES 2 |
| 50 | #define TSPP_FILTER_TABLES 3 |
| 51 | #define TSPP_MAX_DEVICES 3 |
| 52 | #define TSPP_NUM_CHANNELS 16 |
| 53 | #define TSPP_NUM_PRIORITIES 16 |
| 54 | #define TSPP_NUM_KEYS 8 |
| 55 | #define INVALID_CHANNEL 0xFFFFFFFF |
| 56 | #define TSPP_SPS_DESCRIPTOR_COUNT 32 |
| 57 | #define TSPP_PACKET_LENGTH 188 |
| 58 | #define TSPP_MIN_BUFFER_SIZE (TSPP_PACKET_LENGTH) |
| 59 | #define TSPP_MAX_BUFFER_SIZE (16 * 1024) /* maybe allow 64K? */ |
| 60 | #define TSPP_NUM_BUFFERS 16 |
| 61 | #define TSPP_TSIF_DEFAULT_TIME_LIMIT 60 |
| 62 | #define SPS_DESCRIPTOR_SIZE 8 |
| 63 | #define MIN_ACCEPTABLE_BUFFER_COUNT 2 |
| 64 | #define TSPP_DEBUG(msg...) pr_info(msg) |
| 65 | |
| 66 | /* |
| 67 | * TSIF register offsets |
| 68 | */ |
| 69 | #define TSIF_STS_CTL_OFF (0x0) |
| 70 | #define TSIF_TIME_LIMIT_OFF (0x4) |
| 71 | #define TSIF_CLK_REF_OFF (0x8) |
| 72 | #define TSIF_LPBK_FLAGS_OFF (0xc) |
| 73 | #define TSIF_LPBK_DATA_OFF (0x10) |
| 74 | #define TSIF_TEST_CTL_OFF (0x14) |
| 75 | #define TSIF_TEST_MODE_OFF (0x18) |
| 76 | #define TSIF_TEST_RESET_OFF (0x1c) |
| 77 | #define TSIF_TEST_EXPORT_OFF (0x20) |
| 78 | #define TSIF_TEST_CURRENT_OFF (0x24) |
| 79 | |
| 80 | #define TSIF_DATA_PORT_OFF (0x100) |
| 81 | |
| 82 | /* bits for TSIF_STS_CTL register */ |
| 83 | #define TSIF_STS_CTL_EN_IRQ BIT(28) |
| 84 | #define TSIF_STS_CTL_PACK_AVAIL BIT(27) |
| 85 | #define TSIF_STS_CTL_1ST_PACKET BIT(26) |
| 86 | #define TSIF_STS_CTL_OVERFLOW BIT(25) |
| 87 | #define TSIF_STS_CTL_LOST_SYNC BIT(24) |
| 88 | #define TSIF_STS_CTL_TIMEOUT BIT(23) |
| 89 | #define TSIF_STS_CTL_INV_SYNC BIT(21) |
| 90 | #define TSIF_STS_CTL_INV_NULL BIT(20) |
| 91 | #define TSIF_STS_CTL_INV_ERROR BIT(19) |
| 92 | #define TSIF_STS_CTL_INV_ENABLE BIT(18) |
| 93 | #define TSIF_STS_CTL_INV_DATA BIT(17) |
| 94 | #define TSIF_STS_CTL_INV_CLOCK BIT(16) |
| 95 | #define TSIF_STS_CTL_SPARE BIT(15) |
| 96 | #define TSIF_STS_CTL_EN_NULL BIT(11) |
| 97 | #define TSIF_STS_CTL_EN_ERROR BIT(10) |
| 98 | #define TSIF_STS_CTL_LAST_BIT BIT(9) |
| 99 | #define TSIF_STS_CTL_EN_TIME_LIM BIT(8) |
| 100 | #define TSIF_STS_CTL_EN_TCR BIT(7) |
| 101 | #define TSIF_STS_CTL_TEST_MODE BIT(6) |
| 102 | #define TSIF_STS_CTL_EN_DM BIT(4) |
| 103 | #define TSIF_STS_CTL_STOP BIT(3) |
| 104 | #define TSIF_STS_CTL_START BIT(0) |
| 105 | |
| 106 | /* |
| 107 | * TSPP register offsets |
| 108 | */ |
| 109 | #define TSPP_RST 0x00 |
| 110 | #define TSPP_CLK_CONTROL 0x04 |
| 111 | #define TSPP_CONFIG 0x08 |
| 112 | #define TSPP_CONTROL 0x0C |
| 113 | #define TSPP_PS_DISABLE 0x10 |
| 114 | #define TSPP_MSG_IRQ_STATUS 0x14 |
| 115 | #define TSPP_MSG_IRQ_MASK 0x18 |
| 116 | #define TSPP_IRQ_STATUS 0x1C |
| 117 | #define TSPP_IRQ_MASK 0x20 |
| 118 | #define TSPP_IRQ_CLEAR 0x24 |
| 119 | #define TSPP_PIPE_ERROR_STATUS(_n) (0x28 + (_n << 2)) |
| 120 | #define TSPP_STATUS 0x68 |
| 121 | #define TSPP_CURR_TSP_HEADER 0x6C |
| 122 | #define TSPP_CURR_PID_FILTER 0x70 |
| 123 | #define TSPP_SYSTEM_KEY(_n) (0x74 + (_n << 2)) |
| 124 | #define TSPP_CBC_INIT_VAL(_n) (0x94 + (_n << 2)) |
| 125 | #define TSPP_DATA_KEY_RESET 0x9C |
| 126 | #define TSPP_KEY_VALID 0xA0 |
| 127 | #define TSPP_KEY_ERROR 0xA4 |
| 128 | #define TSPP_TEST_CTRL 0xA8 |
| 129 | #define TSPP_VERSION 0xAC |
| 130 | #define TSPP_GENERICS 0xB0 |
| 131 | #define TSPP_NOP 0xB4 |
| 132 | |
| 133 | /* |
| 134 | * Register bit definitions |
| 135 | */ |
| 136 | /* TSPP_RST */ |
| 137 | #define TSPP_RST_RESET BIT(0) |
| 138 | |
| 139 | /* TSPP_CLK_CONTROL */ |
| 140 | #define TSPP_CLK_CONTROL_FORCE_CRYPTO BIT(9) |
| 141 | #define TSPP_CLK_CONTROL_FORCE_PES_PL BIT(8) |
| 142 | #define TSPP_CLK_CONTROL_FORCE_PES_AF BIT(7) |
| 143 | #define TSPP_CLK_CONTROL_FORCE_RAW_CTRL BIT(6) |
| 144 | #define TSPP_CLK_CONTROL_FORCE_PERF_CNT BIT(5) |
| 145 | #define TSPP_CLK_CONTROL_FORCE_CTX_SEARCH BIT(4) |
| 146 | #define TSPP_CLK_CONTROL_FORCE_TSP_PROC BIT(3) |
| 147 | #define TSPP_CLK_CONTROL_FORCE_CONS_AHB2MEM BIT(2) |
| 148 | #define TSPP_CLK_CONTROL_FORCE_TS_AHB2MEM BIT(1) |
| 149 | #define TSPP_CLK_CONTROL_SET_CLKON BIT(0) |
| 150 | |
| 151 | /* TSPP_CONFIG */ |
| 152 | #define TSPP_CONFIG_SET_PACKET_LENGTH(_a, _b) (_a = (_a & 0xF0) | \ |
| 153 | ((_b & 0xF) << 8)) |
| 154 | #define TSPP_CONFIG_GET_PACKET_LENGTH(_a) ((_a >> 8) & 0xF) |
| 155 | #define TSPP_CONFIG_DUP_WITH_DISC_EN BIT(7) |
| 156 | #define TSPP_CONFIG_PES_SYNC_ERROR_MASK BIT(6) |
| 157 | #define TSPP_CONFIG_PS_LEN_ERR_MASK BIT(5) |
| 158 | #define TSPP_CONFIG_PS_CONT_ERR_UNSP_MASK BIT(4) |
| 159 | #define TSPP_CONFIG_PS_CONT_ERR_MASK BIT(3) |
| 160 | #define TSPP_CONFIG_PS_DUP_TSP_MASK BIT(2) |
| 161 | #define TSPP_CONFIG_TSP_ERR_IND_MASK BIT(1) |
| 162 | #define TSPP_CONFIG_TSP_SYNC_ERR_MASK BIT(0) |
| 163 | |
| 164 | /* TSPP_CONTROL */ |
| 165 | #define TSPP_CONTROL_PID_FILTER_LOCK BIT(5) |
| 166 | #define TSPP_CONTROL_FORCE_KEY_CALC BIT(4) |
| 167 | #define TSPP_CONTROL_TSP_CONS_SRC_DIS BIT(3) |
| 168 | #define TSPP_CONTROL_TSP_TSIF1_SRC_DIS BIT(2) |
| 169 | #define TSPP_CONTROL_TSP_TSIF0_SRC_DIS BIT(1) |
| 170 | #define TSPP_CONTROL_PERF_COUNT_INIT BIT(0) |
| 171 | |
| 172 | /* TSPP_MSG_IRQ_STATUS + TSPP_MSG_IRQ_MASK */ |
| 173 | #define TSPP_MSG_TSPP_IRQ BIT(2) |
| 174 | #define TSPP_MSG_TSIF_1_IRQ BIT(1) |
| 175 | #define TSPP_MSG_TSIF_0_IRQ BIT(0) |
| 176 | |
| 177 | /* TSPP_IRQ_STATUS + TSPP_IRQ_MASK + TSPP_IRQ_CLEAR */ |
| 178 | #define TSPP_IRQ_STATUS_TSP_RD_CMPL BIT(19) |
| 179 | #define TSPP_IRQ_STATUS_KEY_ERROR BIT(18) |
| 180 | #define TSPP_IRQ_STATUS_KEY_SWITCHED_BAD BIT(17) |
| 181 | #define TSPP_IRQ_STATUS_KEY_SWITCHED BIT(16) |
| 182 | #define TSPP_IRQ_STATUS_PS_BROKEN(_n) BIT((_n)) |
| 183 | |
| 184 | /* TSPP_PIPE_ERROR_STATUS */ |
| 185 | #define TSPP_PIPE_PES_SYNC_ERROR BIT(3) |
| 186 | #define TSPP_PIPE_PS_LENGTH_ERROR BIT(2) |
| 187 | #define TSPP_PIPE_PS_CONTINUITY_ERROR BIT(1) |
| 188 | #define TSPP_PIP_PS_LOST_START BIT(0) |
| 189 | |
| 190 | /* TSPP_STATUS */ |
| 191 | #define TSPP_STATUS_TSP_PKT_AVAIL BIT(10) |
| 192 | #define TSPP_STATUS_TSIF1_DM_REQ BIT(6) |
| 193 | #define TSPP_STATUS_TSIF0_DM_REQ BIT(2) |
| 194 | #define TSPP_CURR_FILTER_TABLE BIT(0) |
| 195 | |
| 196 | /* TSPP_GENERICS */ |
| 197 | #define TSPP_GENERICS_CRYPTO_GEN BIT(12) |
| 198 | #define TSPP_GENERICS_MAX_CONS_PIPES BIT(7) |
| 199 | #define TSPP_GENERICS_MAX_PIPES BIT(2) |
| 200 | #define TSPP_GENERICS_TSIF_1_GEN BIT(1) |
| 201 | #define TSPP_GENERICS_TSIF_0_GEN BIT(0) |
| 202 | |
| 203 | /* |
| 204 | * TSPP memory regions |
| 205 | */ |
| 206 | #define TSPP_PID_FILTER_TABLE0 0x800 |
| 207 | #define TSPP_PID_FILTER_TABLE1 0x880 |
| 208 | #define TSPP_PID_FILTER_TABLE2 0x900 |
| 209 | #define TSPP_GLOBAL_PERFORMANCE 0x980 /* see tspp_global_performance */ |
| 210 | #define TSPP_PIPE_CONTEXT 0x990 /* see tspp_pipe_context */ |
| 211 | #define TSPP_PIPE_PERFORMANCE 0x998 /* see tspp_pipe_performance */ |
| 212 | #define TSPP_TSP_BUFF_WORD(_n) (0xC10 + (_n << 2)) |
| 213 | #define TSPP_DATA_KEY 0xCD0 |
| 214 | |
| 215 | #ifdef TSPP_USE_DEBUGFS |
| 216 | struct debugfs_entry { |
| 217 | const char *name; |
| 218 | mode_t mode; |
| 219 | int offset; |
| 220 | }; |
| 221 | |
| 222 | static const struct debugfs_entry debugfs_tsif_regs[] = { |
| 223 | {"sts_ctl", S_IRUGO | S_IWUSR, TSIF_STS_CTL_OFF}, |
| 224 | {"time_limit", S_IRUGO | S_IWUSR, TSIF_TIME_LIMIT_OFF}, |
| 225 | {"clk_ref", S_IRUGO | S_IWUSR, TSIF_CLK_REF_OFF}, |
| 226 | {"lpbk_flags", S_IRUGO | S_IWUSR, TSIF_LPBK_FLAGS_OFF}, |
| 227 | {"lpbk_data", S_IRUGO | S_IWUSR, TSIF_LPBK_DATA_OFF}, |
| 228 | {"test_ctl", S_IRUGO | S_IWUSR, TSIF_TEST_CTL_OFF}, |
| 229 | {"test_mode", S_IRUGO | S_IWUSR, TSIF_TEST_MODE_OFF}, |
| 230 | {"test_reset", S_IWUSR, TSIF_TEST_RESET_OFF}, |
| 231 | {"test_export", S_IRUGO | S_IWUSR, TSIF_TEST_EXPORT_OFF}, |
| 232 | {"test_current", S_IRUGO, TSIF_TEST_CURRENT_OFF}, |
| 233 | {"data_port", S_IRUSR, TSIF_DATA_PORT_OFF}, |
| 234 | }; |
| 235 | |
| 236 | static const struct debugfs_entry debugfs_tspp_regs[] = { |
| 237 | {"rst", S_IRUGO | S_IWUSR, TSPP_RST}, |
| 238 | {"clk_control", S_IRUGO | S_IWUSR, TSPP_CLK_CONTROL}, |
| 239 | {"config", S_IRUGO | S_IWUSR, TSPP_CONFIG}, |
| 240 | {"control", S_IRUGO | S_IWUSR, TSPP_CONTROL}, |
| 241 | {"ps_disable", S_IRUGO | S_IWUSR, TSPP_PS_DISABLE}, |
| 242 | {"msg_irq_status", S_IRUGO | S_IWUSR, TSPP_MSG_IRQ_STATUS}, |
| 243 | {"msg_irq_mask", S_IRUGO | S_IWUSR, TSPP_MSG_IRQ_MASK}, |
| 244 | {"irq_status", S_IRUGO | S_IWUSR, TSPP_IRQ_STATUS}, |
| 245 | {"irq_mask", S_IRUGO | S_IWUSR, TSPP_IRQ_MASK}, |
| 246 | {"irq_clear", S_IRUGO | S_IWUSR, TSPP_IRQ_CLEAR}, |
| 247 | /* {"pipe_error_status",S_IRUGO | S_IWUSR, TSPP_PIPE_ERROR_STATUS}, */ |
| 248 | {"status", S_IRUGO | S_IWUSR, TSPP_STATUS}, |
| 249 | {"curr_tsp_header", S_IRUGO | S_IWUSR, TSPP_CURR_TSP_HEADER}, |
| 250 | {"curr_pid_filter", S_IRUGO | S_IWUSR, TSPP_CURR_PID_FILTER}, |
| 251 | /* {"system_key", S_IRUGO | S_IWUSR, TSPP_SYSTEM_KEY}, */ |
| 252 | /* {"cbc_init_val", S_IRUGO | S_IWUSR, TSPP_CBC_INIT_VAL}, */ |
| 253 | {"data_key_reset", S_IRUGO | S_IWUSR, TSPP_DATA_KEY_RESET}, |
| 254 | {"key_valid", S_IRUGO | S_IWUSR, TSPP_KEY_VALID}, |
| 255 | {"key_error", S_IRUGO | S_IWUSR, TSPP_KEY_ERROR}, |
| 256 | {"test_ctrl", S_IRUGO | S_IWUSR, TSPP_TEST_CTRL}, |
| 257 | {"version", S_IRUGO | S_IWUSR, TSPP_VERSION}, |
| 258 | {"generics", S_IRUGO | S_IWUSR, TSPP_GENERICS}, |
| 259 | {"pid_filter_table0", S_IRUGO | S_IWUSR, TSPP_PID_FILTER_TABLE0}, |
| 260 | {"pid_filter_table1", S_IRUGO | S_IWUSR, TSPP_PID_FILTER_TABLE1}, |
| 261 | {"pid_filter_table2", S_IRUGO | S_IWUSR, TSPP_PID_FILTER_TABLE2}, |
| 262 | {"global_performance", S_IRUGO | S_IWUSR, TSPP_GLOBAL_PERFORMANCE}, |
| 263 | {"pipe_context", S_IRUGO | S_IWUSR, TSPP_PIPE_CONTEXT}, |
| 264 | {"pipe_performance", S_IRUGO | S_IWUSR, TSPP_PIPE_PERFORMANCE}, |
| 265 | {"data_key", S_IRUGO | S_IWUSR, TSPP_DATA_KEY} |
| 266 | }; |
| 267 | |
| 268 | #endif /* TSPP_USE_DEBUGFS */ |
| 269 | |
| 270 | struct tspp_pid_filter { |
| 271 | u32 filter; /* see FILTER_ macros */ |
| 272 | u32 config; /* see FILTER_ macros */ |
| 273 | }; |
| 274 | |
| 275 | /* tsp_info */ |
| 276 | #define FILTER_HEADER_ERROR_MASK BIT(7) |
| 277 | #define FILTER_TRANS_END_DISABLE BIT(6) |
| 278 | #define FILTER_DEC_ON_ERROR_EN BIT(5) |
| 279 | #define FILTER_DECRYPT BIT(4) |
| 280 | #define FILTER_HAS_ENCRYPTION(_p) (_p->config & FILTER_DECRYPT) |
| 281 | #define FILTER_GET_PIPE_NUMBER0(_p) (_p->config & 0xF) |
| 282 | #define FILTER_SET_PIPE_NUMBER0(_p, _b) (_p->config = \ |
| 283 | (_p->config & ~0xF) | (_b & 0xF)) |
| 284 | #define FILTER_GET_PIPE_PROCESS0(_p) ((_p->filter >> 30) & 0x3) |
| 285 | #define FILTER_SET_PIPE_PROCESS0(_p, _b) (_p->filter = \ |
| 286 | (_p->filter & ~(0x3<<30)) | ((_b & 0x3) << 30)) |
| 287 | #define FILTER_GET_PIPE_PID(_p) ((_p->filter >> 13) & 0x1FFF) |
| 288 | #define FILTER_SET_PIPE_PID(_p, _b) (_p->filter = \ |
| 289 | (_p->filter & ~(0x1FFF<<13)) | ((_b & 0x1FFF) << 13)) |
| 290 | #define FILTER_GET_PID_MASK(_p) (_p->filter & 0x1FFF) |
| 291 | #define FILTER_SET_PID_MASK(_p, _b) (_p->filter = \ |
| 292 | (_p->filter & ~0x1FFF) | (_b & 0x1FFF)) |
| 293 | #define FILTER_GET_PIPE_PROCESS1(_p) ((_p->config >> 30) & 0x3) |
| 294 | #define FILTER_SET_PIPE_PROCESS1(_p, _b) (_p->config = \ |
| 295 | (_p->config & ~(0x3<<30)) | ((_b & 0x3) << 30)) |
| 296 | #define FILTER_GET_KEY_NUMBER(_p) ((_p->config >> 8) & 0x7) |
| 297 | #define FILTER_SET_KEY_NUMBER(_p, _b) (_p->config = \ |
| 298 | (_p->config & ~(0x7<<8)) | ((_b & 0x7) << 8)) |
| 299 | |
| 300 | struct tspp_global_performance_regs { |
| 301 | u32 tsp_total; |
| 302 | u32 tsp_ignored; |
| 303 | u32 tsp_error; |
| 304 | u32 tsp_sync; |
| 305 | }; |
| 306 | |
| 307 | struct tspp_pipe_context_regs { |
| 308 | u16 pes_bytes_left; |
| 309 | u16 count; |
| 310 | u32 tsif_suffix; |
| 311 | } __packed; |
| 312 | #define CONTEXT_GET_STATE(_a) (_a & 0x3) |
| 313 | #define CONTEXT_UNSPEC_LENGTH BIT(11) |
| 314 | #define CONTEXT_GET_CONT_COUNT(_a) ((_a >> 12) & 0xF) |
| 315 | |
| 316 | struct tspp_pipe_performance_regs { |
| 317 | u32 tsp_total; |
| 318 | u32 ps_duplicate_tsp; |
| 319 | u32 tsp_no_payload; |
| 320 | u32 tsp_broken_ps; |
| 321 | u32 ps_total_num; |
| 322 | u32 ps_continuity_error; |
| 323 | u32 ps_length_error; |
| 324 | u32 pes_sync_error; |
| 325 | }; |
| 326 | |
| 327 | struct tspp_tsif_device { |
| 328 | void __iomem *base; |
| 329 | u32 time_limit; |
| 330 | u32 ref_count; |
| 331 | |
| 332 | /* debugfs */ |
| 333 | #ifdef TSPP_USE_DEBUGFS |
| 334 | struct dentry *dent_tsif; |
| 335 | struct dentry *debugfs_tsif_regs[ARRAY_SIZE(debugfs_tsif_regs)]; |
| 336 | #endif /* TSPP_USE_DEBUGFS */ |
| 337 | }; |
| 338 | |
| 339 | /* this represents the actual hardware device */ |
| 340 | struct tspp_device { |
| 341 | struct platform_device *pdev; |
| 342 | void __iomem *base; |
| 343 | unsigned int tspp_irq; |
| 344 | unsigned int bam_irq; |
| 345 | u32 bam_handle; |
| 346 | struct sps_bam_props bam_props; |
| 347 | struct wake_lock wake_lock; |
| 348 | spinlock_t spinlock; |
| 349 | struct tasklet_struct tlet; |
| 350 | struct tspp_tsif_device tsif[TSPP_TSIF_INSTANCES]; |
| 351 | /* clocks */ |
| 352 | struct clk *tsif_pclk; |
| 353 | struct clk *tsif_ref_clk; |
| 354 | |
| 355 | #ifdef TSPP_USE_DEBUGFS |
| 356 | struct dentry *dent; |
| 357 | struct dentry *debugfs_regs[ARRAY_SIZE(debugfs_tspp_regs)]; |
| 358 | #endif /* TSPP_USE_DEBUGFS */ |
| 359 | }; |
| 360 | |
| 361 | enum tspp_buf_state { |
| 362 | TSPP_BUF_STATE_EMPTY, /* buffer has been allocated, but not waiting */ |
| 363 | TSPP_BUF_STATE_WAITING, /* buffer is waiting to be filled */ |
| 364 | TSPP_BUF_STATE_DATA /* buffer is not empty and can be read */ |
| 365 | }; |
| 366 | |
| 367 | struct tspp_mem_buffer { |
| 368 | struct sps_mem_buffer mem; |
| 369 | enum tspp_buf_state state; |
| 370 | size_t filled; /* how much data this buffer is holding */ |
| 371 | int read_index; /* where to start reading data from */ |
| 372 | }; |
| 373 | |
| 374 | /* this represents each char device 'channel' */ |
| 375 | struct tspp_channel { |
| 376 | struct cdev cdev; |
| 377 | struct device *dd; |
| 378 | struct tspp_device *pdev; |
| 379 | struct sps_pipe *pipe; |
| 380 | struct sps_connect config; |
| 381 | struct sps_register_event event; |
| 382 | struct tspp_mem_buffer buffer[TSPP_NUM_BUFFERS]; |
| 383 | wait_queue_head_t in_queue; /* set when data is received */ |
| 384 | int read; /* index into mem showing buffers ready to be read by user */ |
| 385 | int waiting; /* index into mem showing outstanding transfers */ |
| 386 | int id; /* channel id (0-15) */ |
| 387 | int used; /* is this channel in use? */ |
| 388 | int key; /* which encryption key index is used */ |
| 389 | u32 bufsize; /* size of the sps transfer buffers */ |
| 390 | int buffer_count; /* how many buffers are actually allocated */ |
| 391 | int filter_count; /* how many filters have been added to this channel */ |
| 392 | enum tspp_source src; |
| 393 | enum tspp_mode mode; |
| 394 | }; |
| 395 | |
| 396 | struct tspp_pid_filter_table { |
| 397 | struct tspp_pid_filter filter[TSPP_NUM_PRIORITIES]; |
| 398 | }; |
| 399 | |
| 400 | struct tspp_key_entry { |
| 401 | u32 even_lsb; |
| 402 | u32 even_msb; |
| 403 | u32 odd_lsb; |
| 404 | u32 odd_msb; |
| 405 | }; |
| 406 | |
| 407 | struct tspp_key_table { |
| 408 | struct tspp_key_entry entry[TSPP_NUM_KEYS]; |
| 409 | }; |
| 410 | |
| 411 | static struct tspp_pid_filter_table *tspp_filter_table[TSPP_FILTER_TABLES]; |
| 412 | static struct tspp_channel channel_list[TSPP_NUM_CHANNELS]; |
| 413 | static struct tspp_key_table *tspp_key_table; |
| 414 | static struct tspp_global_performance_regs *tspp_global_performance; |
| 415 | static struct tspp_pipe_context_regs *tspp_pipe_context; |
| 416 | static struct tspp_pipe_performance_regs *tspp_pipe_performance; |
| 417 | static struct class *tspp_class; |
| 418 | static int tspp_key_entry; |
| 419 | static dev_t tspp_minor; /* next minor number to assign */ |
| 420 | static int loopback_mode; /* put tsif interfaces into loopback mode */ |
| 421 | |
| 422 | /*** IRQ ***/ |
| 423 | static irqreturn_t tspp_isr(int irq, void *dev_id) |
| 424 | { |
| 425 | struct tspp_device *device = dev_id; |
| 426 | u32 status, mask; |
| 427 | u32 data; |
| 428 | |
| 429 | status = readl_relaxed(device->base + TSPP_IRQ_STATUS); |
| 430 | mask = readl_relaxed(device->base + TSPP_IRQ_MASK); |
| 431 | status &= mask; |
| 432 | |
| 433 | if (!status) { |
| 434 | dev_warn(&device->pdev->dev, "Spurious interrupt"); |
| 435 | return IRQ_NONE; |
| 436 | } |
| 437 | |
| 438 | /* if (status & TSPP_IRQ_STATUS_TSP_RD_CMPL) */ |
| 439 | |
| 440 | if (status & TSPP_IRQ_STATUS_KEY_ERROR) { |
| 441 | /* read the key error info */ |
| 442 | data = readl_relaxed(device->base + TSPP_KEY_ERROR); |
| 443 | dev_info(&device->pdev->dev, "key error 0x%x", data); |
| 444 | } |
| 445 | if (status & TSPP_IRQ_STATUS_KEY_SWITCHED_BAD) { |
| 446 | data = readl_relaxed(device->base + TSPP_KEY_VALID); |
| 447 | dev_info(&device->pdev->dev, "key invalidated: 0x%x", data); |
| 448 | } |
| 449 | if (status & TSPP_IRQ_STATUS_KEY_SWITCHED) |
| 450 | dev_info(&device->pdev->dev, "key switched"); |
| 451 | |
| 452 | if (status & 0xffff) |
| 453 | dev_info(&device->pdev->dev, "broken pipe"); |
| 454 | |
| 455 | writel_relaxed(status, device->base + TSPP_IRQ_CLEAR); |
| 456 | wmb(); |
| 457 | return IRQ_HANDLED; |
| 458 | } |
| 459 | |
| 460 | /*** callbacks ***/ |
| 461 | static void tspp_sps_complete_cb(struct sps_event_notify *notify) |
| 462 | { |
| 463 | struct tspp_channel *channel = notify->user; |
| 464 | tasklet_schedule(&channel->pdev->tlet); |
| 465 | } |
| 466 | |
| 467 | /*** tasklet ***/ |
| 468 | static void tspp_sps_complete_tlet(unsigned long data) |
| 469 | { |
| 470 | int i; |
| 471 | int complete; |
| 472 | unsigned long flags; |
| 473 | struct sps_iovec iovec; |
| 474 | struct tspp_channel *channel; |
| 475 | struct tspp_device *device = (struct tspp_device *)data; |
| 476 | struct tspp_mem_buffer *buffer; |
| 477 | |
| 478 | spin_lock_irqsave(&device->spinlock, flags); |
| 479 | |
| 480 | for (i = 0; i < TSPP_NUM_CHANNELS; i++) { |
| 481 | complete = 0; |
| 482 | channel = &channel_list[i]; |
| 483 | buffer = &channel->buffer[channel->waiting]; |
| 484 | |
| 485 | /* get completions */ |
| 486 | if (buffer->state == TSPP_BUF_STATE_WAITING) { |
| 487 | if (sps_get_iovec(channel->pipe, &iovec) != 0) { |
| 488 | pr_err("tspp: Error in iovec on channel %i", |
| 489 | channel->id); |
| 490 | break; |
| 491 | } |
| 492 | if (iovec.size == 0) |
| 493 | break; |
| 494 | |
| 495 | if (iovec.addr != buffer->mem.phys_base) |
| 496 | pr_err("tspp: buffer mismatch 0x%08x", |
| 497 | buffer->mem.phys_base); |
| 498 | |
| 499 | complete = 1; |
| 500 | buffer->state = TSPP_BUF_STATE_DATA; |
| 501 | buffer->filled = iovec.size; |
| 502 | buffer->read_index = 0; |
| 503 | channel->waiting++; |
| 504 | if (channel->waiting == TSPP_NUM_BUFFERS) |
| 505 | channel->waiting = 0; |
| 506 | } |
| 507 | |
| 508 | if (complete) { |
| 509 | /* wake any waiting processes */ |
| 510 | wake_up_interruptible(&channel->in_queue); |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | spin_unlock_irqrestore(&device->spinlock, flags); |
| 515 | } |
| 516 | |
| 517 | /*** GPIO functions ***/ |
| 518 | static void tspp_gpios_free(const struct msm_gpio *table, int size) |
| 519 | { |
| 520 | int i; |
| 521 | const struct msm_gpio *g; |
| 522 | for (i = size-1; i >= 0; i--) { |
| 523 | g = table + i; |
| 524 | gpio_free(GPIO_PIN(g->gpio_cfg)); |
| 525 | } |
| 526 | } |
| 527 | |
| 528 | static int tspp_gpios_request(const struct msm_gpio *table, int size) |
| 529 | { |
| 530 | int rc; |
| 531 | int i; |
| 532 | const struct msm_gpio *g; |
| 533 | for (i = 0; i < size; i++) { |
| 534 | g = table + i; |
| 535 | rc = gpio_request(GPIO_PIN(g->gpio_cfg), g->label); |
| 536 | if (rc) { |
| 537 | pr_err("tspp: gpio_request(%d) <%s> failed: %d\n", |
| 538 | GPIO_PIN(g->gpio_cfg), g->label ?: "?", rc); |
| 539 | goto err; |
| 540 | } |
| 541 | } |
| 542 | return 0; |
| 543 | err: |
| 544 | tspp_gpios_free(table, i); |
| 545 | return rc; |
| 546 | } |
| 547 | |
| 548 | static int tspp_gpios_disable(const struct msm_gpio *table, int size) |
| 549 | { |
| 550 | int rc = 0; |
| 551 | int i; |
| 552 | const struct msm_gpio *g; |
| 553 | for (i = size-1; i >= 0; i--) { |
| 554 | int tmp; |
| 555 | g = table + i; |
| 556 | tmp = gpio_tlmm_config(g->gpio_cfg, GPIO_CFG_DISABLE); |
| 557 | if (tmp) { |
| 558 | pr_err("tspp_gpios_disable(0x%08x, GPIO_CFG_DISABLE)" |
| 559 | " <%s> failed: %d\n", |
| 560 | g->gpio_cfg, g->label ?: "?", rc); |
| 561 | pr_err("tspp: pin %d func %d dir %d pull %d drvstr %d\n", |
| 562 | GPIO_PIN(g->gpio_cfg), GPIO_FUNC(g->gpio_cfg), |
| 563 | GPIO_DIR(g->gpio_cfg), GPIO_PULL(g->gpio_cfg), |
| 564 | GPIO_DRVSTR(g->gpio_cfg)); |
| 565 | if (!rc) |
| 566 | rc = tmp; |
| 567 | } |
| 568 | } |
| 569 | |
| 570 | return rc; |
| 571 | } |
| 572 | |
| 573 | static int tspp_gpios_enable(const struct msm_gpio *table, int size) |
| 574 | { |
| 575 | int rc; |
| 576 | int i; |
| 577 | const struct msm_gpio *g; |
| 578 | for (i = 0; i < size; i++) { |
| 579 | g = table + i; |
| 580 | rc = gpio_tlmm_config(g->gpio_cfg, GPIO_CFG_ENABLE); |
| 581 | if (rc) { |
| 582 | pr_err("tspp: gpio_tlmm_config(0x%08x, GPIO_CFG_ENABLE)" |
| 583 | " <%s> failed: %d\n", |
| 584 | g->gpio_cfg, g->label ?: "?", rc); |
| 585 | pr_err("tspp: pin %d func %d dir %d pull %d drvstr %d\n", |
| 586 | GPIO_PIN(g->gpio_cfg), GPIO_FUNC(g->gpio_cfg), |
| 587 | GPIO_DIR(g->gpio_cfg), GPIO_PULL(g->gpio_cfg), |
| 588 | GPIO_DRVSTR(g->gpio_cfg)); |
| 589 | goto err; |
| 590 | } |
| 591 | } |
| 592 | return 0; |
| 593 | err: |
| 594 | tspp_gpios_disable(table, i); |
| 595 | return rc; |
| 596 | } |
| 597 | |
| 598 | static int tspp_gpios_request_enable(const struct msm_gpio *table, int size) |
| 599 | { |
| 600 | int rc = tspp_gpios_request(table, size); |
| 601 | if (rc) |
| 602 | return rc; |
| 603 | rc = tspp_gpios_enable(table, size); |
| 604 | if (rc) |
| 605 | tspp_gpios_free(table, size); |
| 606 | return rc; |
| 607 | } |
| 608 | |
| 609 | static void tspp_gpios_disable_free(const struct msm_gpio *table, int size) |
| 610 | { |
| 611 | tspp_gpios_disable(table, size); |
| 612 | tspp_gpios_free(table, size); |
| 613 | } |
| 614 | |
| 615 | static int tspp_start_gpios(struct tspp_device *device) |
| 616 | { |
| 617 | struct msm_tspp_platform_data *pdata = |
| 618 | device->pdev->dev.platform_data; |
| 619 | return tspp_gpios_request_enable(pdata->gpios, pdata->num_gpios); |
| 620 | } |
| 621 | |
| 622 | static void tspp_stop_gpios(struct tspp_device *device) |
| 623 | { |
| 624 | struct msm_tspp_platform_data *pdata = |
| 625 | device->pdev->dev.platform_data; |
| 626 | tspp_gpios_disable_free(pdata->gpios, pdata->num_gpios); |
| 627 | } |
| 628 | |
| 629 | /*** TSIF functions ***/ |
| 630 | static int tspp_start_tsif(struct tspp_tsif_device *tsif_device) |
| 631 | { |
| 632 | int start_hardware = 0; |
| 633 | u32 ctl; |
| 634 | |
| 635 | if (tsif_device->ref_count == 0) { |
| 636 | start_hardware = 1; |
| 637 | } else if (tsif_device->ref_count > 0) { |
| 638 | ctl = readl_relaxed(tsif_device->base + TSIF_STS_CTL_OFF); |
| 639 | if ((ctl & TSIF_STS_CTL_START) != 1) { |
| 640 | /* this hardware should already be running */ |
| 641 | pr_warn("tspp: tsif hw not started but ref count > 0"); |
| 642 | start_hardware = 1; |
| 643 | } |
| 644 | } |
| 645 | |
| 646 | if (start_hardware) { |
| 647 | if (loopback_mode) { |
| 648 | ctl = TSIF_STS_CTL_EN_IRQ | |
| 649 | TSIF_STS_CTL_EN_NULL | |
| 650 | TSIF_STS_CTL_EN_ERROR | |
| 651 | TSIF_STS_CTL_TEST_MODE | |
| 652 | TSIF_STS_CTL_EN_DM; |
| 653 | TSPP_DEBUG("tspp: starting tsif hw in loopback mode 0x%x", ctl); |
| 654 | } else { |
| 655 | ctl = TSIF_STS_CTL_EN_IRQ | |
| 656 | TSIF_STS_CTL_EN_TIME_LIM | |
| 657 | TSIF_STS_CTL_EN_TCR | |
| 658 | TSIF_STS_CTL_EN_DM; |
| 659 | } |
| 660 | writel_relaxed(ctl, tsif_device->base + TSIF_STS_CTL_OFF); |
| 661 | writel_relaxed(tsif_device->time_limit, |
| 662 | tsif_device->base + TSIF_TIME_LIMIT_OFF); |
| 663 | wmb(); |
| 664 | writel_relaxed(ctl | TSIF_STS_CTL_START, |
| 665 | tsif_device->base + TSIF_STS_CTL_OFF); |
| 666 | wmb(); |
| 667 | ctl = readl_relaxed(tsif_device->base + TSIF_STS_CTL_OFF); |
| 668 | } |
| 669 | |
| 670 | tsif_device->ref_count++; |
| 671 | |
| 672 | return (ctl & TSIF_STS_CTL_START) ? 0 : -EFAULT; |
| 673 | } |
| 674 | |
| 675 | static void tspp_stop_tsif(struct tspp_tsif_device *tsif_device) |
| 676 | { |
| 677 | if (tsif_device->ref_count == 0) |
| 678 | return; |
| 679 | |
| 680 | tsif_device->ref_count--; |
| 681 | |
| 682 | if (tsif_device->ref_count == 0) { |
| 683 | writel_relaxed(TSIF_STS_CTL_STOP, |
| 684 | tsif_device->base + TSIF_STS_CTL_OFF); |
| 685 | wmb(); |
| 686 | } |
| 687 | } |
| 688 | |
| 689 | /*** TSPP functions ***/ |
| 690 | static int tspp_get_key_entry(void) |
| 691 | { |
| 692 | int i; |
| 693 | for (i = 0; i < TSPP_NUM_KEYS; i++) { |
| 694 | if (!(tspp_key_entry & (1 << i))) { |
| 695 | tspp_key_entry |= (1 << i); |
| 696 | return i; |
| 697 | } |
| 698 | } |
| 699 | return 1; |
| 700 | } |
| 701 | |
| 702 | static void tspp_free_key_entry(int entry) |
| 703 | { |
| 704 | if (entry > TSPP_NUM_KEYS) { |
| 705 | pr_err("tspp_free_key_entry: index out of bounds"); |
| 706 | return; |
| 707 | } |
| 708 | |
| 709 | tspp_key_entry &= ~(1 << entry); |
| 710 | } |
| 711 | |
| 712 | static int tspp_alloc_buffer(struct sps_mem_buffer *mem, |
| 713 | struct tspp_channel *channel) |
| 714 | { |
| 715 | if (channel->bufsize < TSPP_MIN_BUFFER_SIZE || |
| 716 | channel->bufsize > TSPP_MAX_BUFFER_SIZE) { |
| 717 | pr_err("tspp: bad buffer size"); |
| 718 | return 1; |
| 719 | } |
| 720 | |
| 721 | switch (channel->mode) { |
| 722 | case TSPP_MODE_DISABLED: |
| 723 | mem->size = 0; |
| 724 | pr_err("tspp: channel is disabled"); |
| 725 | return 1; |
| 726 | |
| 727 | case TSPP_MODE_PES: |
| 728 | /* give the user what he asks for */ |
| 729 | mem->size = channel->bufsize; |
| 730 | break; |
| 731 | |
| 732 | case TSPP_MODE_RAW: |
| 733 | /* must be a multiple of 192 */ |
| 734 | if (channel->bufsize < (TSPP_PACKET_LENGTH+4)) |
| 735 | mem->size = (TSPP_PACKET_LENGTH+4); |
| 736 | else |
| 737 | mem->size = (channel->bufsize / |
| 738 | (TSPP_PACKET_LENGTH+4)) * |
| 739 | (TSPP_PACKET_LENGTH+4); |
| 740 | break; |
| 741 | |
| 742 | case TSPP_MODE_RAW_NO_SUFFIX: |
| 743 | /* must be a multiple of 188 */ |
| 744 | mem->size = (channel->bufsize / TSPP_PACKET_LENGTH) * |
| 745 | TSPP_PACKET_LENGTH; |
| 746 | break; |
| 747 | } |
| 748 | |
| 749 | #ifdef TSPP_USE_DMA_ALLOC_COHERENT |
| 750 | mem->base = dma_alloc_coherent(NULL, mem->size, |
| 751 | &mem->phys_base, GFP_KERNEL); |
| 752 | if (mem->base == 0) { |
| 753 | pr_err("tspp dma alloc coherent failed %i", mem->size); |
| 754 | return -ENOMEM; |
| 755 | } |
| 756 | #else |
| 757 | mem->base = kmalloc(mem->size, GFP_KERNEL); |
| 758 | if (mem->base == 0) { |
| 759 | pr_err("tspp buffer allocation failed %i", mem->size); |
| 760 | return -ENOMEM; |
| 761 | } |
| 762 | mem->phys_base = dma_map_single(NULL, |
| 763 | mem->base, |
| 764 | mem->size, |
| 765 | DMA_FROM_DEVICE); |
| 766 | #endif |
| 767 | |
| 768 | return 0; |
| 769 | } |
| 770 | |
| 771 | static int tspp_global_reset(struct tspp_device *pdev) |
| 772 | { |
| 773 | u32 i, val; |
| 774 | |
| 775 | /* stop all TSIFs */ |
| 776 | for (i = 0; i < TSPP_TSIF_INSTANCES; i++) { |
| 777 | pdev->tsif[i].ref_count = 1; /* allows stopping hw */ |
| 778 | tspp_stop_tsif(&pdev->tsif[i]); /* will reset ref_count to 0 */ |
| 779 | pdev->tsif[i].time_limit = TSPP_TSIF_DEFAULT_TIME_LIMIT; |
| 780 | } |
| 781 | writel_relaxed(TSPP_RST_RESET, pdev->base + TSPP_RST); |
| 782 | wmb(); |
| 783 | |
| 784 | /* BAM */ |
| 785 | if (sps_device_reset(pdev->bam_handle) != 0) { |
| 786 | pr_err("tspp: error resetting bam"); |
| 787 | return 1; |
| 788 | } |
| 789 | |
| 790 | /* TSPP tables */ |
| 791 | for (i = 0; i < TSPP_FILTER_TABLES; i++) |
| 792 | memset(tspp_filter_table[i], |
| 793 | 0, sizeof(struct tspp_pid_filter_table)); |
| 794 | |
| 795 | /* disable all filters */ |
| 796 | val = (2 << TSPP_NUM_CHANNELS) - 1; |
| 797 | writel_relaxed(val, pdev->base + TSPP_PS_DISABLE); |
| 798 | |
| 799 | /* TSPP registers */ |
| 800 | val = readl_relaxed(pdev->base + TSPP_CONTROL); |
| 801 | writel_relaxed(val | TSPP_CLK_CONTROL_FORCE_PERF_CNT, |
| 802 | pdev->base + TSPP_CONTROL); |
| 803 | wmb(); |
| 804 | memset(tspp_global_performance, 0, |
| 805 | sizeof(struct tspp_global_performance_regs)); |
| 806 | memset(tspp_pipe_context, 0, |
| 807 | sizeof(struct tspp_pipe_context_regs)); |
| 808 | memset(tspp_pipe_performance, 0, |
| 809 | sizeof(struct tspp_pipe_performance_regs)); |
| 810 | wmb(); |
| 811 | writel_relaxed(val & ~TSPP_CLK_CONTROL_FORCE_PERF_CNT, |
| 812 | pdev->base + TSPP_CONTROL); |
| 813 | wmb(); |
| 814 | |
| 815 | val = readl_relaxed(pdev->base + TSPP_CONFIG); |
| 816 | val &= ~(TSPP_CONFIG_PS_LEN_ERR_MASK | |
| 817 | TSPP_CONFIG_PS_CONT_ERR_UNSP_MASK | |
| 818 | TSPP_CONFIG_PS_CONT_ERR_MASK); |
| 819 | TSPP_CONFIG_SET_PACKET_LENGTH(val, TSPP_PACKET_LENGTH); |
| 820 | writel_relaxed(val, pdev->base + TSPP_CONFIG); |
| 821 | writel_relaxed(0x000fffff, pdev->base + TSPP_IRQ_MASK); |
| 822 | writel_relaxed(0x000fffff, pdev->base + TSPP_IRQ_CLEAR); |
| 823 | writel_relaxed(0, pdev->base + TSPP_RST); |
| 824 | wmb(); |
| 825 | |
| 826 | tspp_key_entry = 0; |
| 827 | |
| 828 | return 0; |
| 829 | } |
| 830 | |
| 831 | int tspp_open_stream(struct tspp_channel *channel, enum tspp_source src) |
| 832 | { |
| 833 | u32 val; |
| 834 | struct tspp_device *pdev; |
| 835 | |
| 836 | if (!channel) |
| 837 | return 1; |
| 838 | |
| 839 | pdev = channel->pdev; |
| 840 | |
| 841 | switch (src) { |
| 842 | case TSPP_SOURCE_TSIF0: |
| 843 | /* make sure TSIF0 is running & enabled */ |
| 844 | if (tspp_start_tsif(&pdev->tsif[0]) != 0) { |
| 845 | pr_err("tspp: error starting tsif0"); |
| 846 | return 1; |
| 847 | } |
| 848 | val = readl_relaxed(pdev->base + TSPP_CONTROL); |
| 849 | writel_relaxed(val & ~TSPP_CONTROL_TSP_TSIF0_SRC_DIS, |
| 850 | pdev->base + TSPP_CONTROL); |
| 851 | wmb(); |
| 852 | break; |
| 853 | case TSPP_SOURCE_TSIF1: |
| 854 | /* make sure TSIF1 is running & enabled */ |
| 855 | if (tspp_start_tsif(&pdev->tsif[1]) != 0) { |
| 856 | pr_err("tspp: error starting tsif1"); |
| 857 | return 1; |
| 858 | } |
| 859 | val = readl_relaxed(pdev->base + TSPP_CONTROL); |
| 860 | writel_relaxed(val & ~TSPP_CONTROL_TSP_TSIF1_SRC_DIS, |
| 861 | pdev->base + TSPP_CONTROL); |
| 862 | wmb(); |
| 863 | break; |
| 864 | case TSPP_SOURCE_MEM: |
| 865 | break; |
| 866 | default: |
| 867 | pr_warn("tspp: channel %i invalid source %i", channel->id, src); |
| 868 | return 1; |
| 869 | } |
| 870 | |
| 871 | channel->src = src; |
| 872 | |
| 873 | return 0; |
| 874 | } |
| 875 | EXPORT_SYMBOL(tspp_open_stream); |
| 876 | |
| 877 | int tspp_close_stream(struct tspp_channel *channel) |
| 878 | { |
| 879 | u32 val; |
| 880 | struct tspp_device *pdev; |
| 881 | |
| 882 | pdev = channel->pdev; |
| 883 | |
| 884 | switch (channel->src) { |
| 885 | case TSPP_SOURCE_TSIF0: |
| 886 | tspp_stop_tsif(&pdev->tsif[0]); |
| 887 | val = readl_relaxed(pdev->base + TSPP_CONTROL); |
| 888 | writel_relaxed(val | TSPP_CONTROL_TSP_TSIF0_SRC_DIS, |
| 889 | pdev->base + TSPP_CONTROL); |
| 890 | wmb(); |
| 891 | break; |
| 892 | case TSPP_SOURCE_TSIF1: |
| 893 | tspp_stop_tsif(&pdev->tsif[1]); |
| 894 | val = readl_relaxed(pdev->base + TSPP_CONTROL); |
| 895 | writel_relaxed(val | TSPP_CONTROL_TSP_TSIF1_SRC_DIS, |
| 896 | pdev->base + TSPP_CONTROL); |
| 897 | break; |
| 898 | case TSPP_SOURCE_MEM: |
| 899 | break; |
| 900 | case TSPP_SOURCE_NONE: |
| 901 | break; |
| 902 | } |
| 903 | |
| 904 | channel->src = -1; |
| 905 | return 0; |
| 906 | } |
| 907 | EXPORT_SYMBOL(tspp_close_stream); |
| 908 | |
| 909 | int tspp_open_channel(struct tspp_channel *channel) |
| 910 | { |
| 911 | int rc = 0; |
| 912 | struct sps_connect *config = &channel->config; |
| 913 | struct sps_register_event *event = &channel->event; |
| 914 | |
| 915 | if (channel->used) { |
| 916 | pr_err("tspp channel already in use"); |
| 917 | return 1; |
| 918 | } |
| 919 | |
| 920 | /* mark it as used */ |
| 921 | channel->used = 1; |
| 922 | |
| 923 | /* start the bam */ |
| 924 | channel->pipe = sps_alloc_endpoint(); |
| 925 | if (channel->pipe == 0) { |
| 926 | pr_err("tspp: error allocating endpoint"); |
| 927 | rc = -ENOMEM; |
| 928 | goto err_sps_alloc; |
| 929 | } |
| 930 | |
| 931 | /* get default configuration */ |
| 932 | sps_get_config(channel->pipe, config); |
| 933 | |
| 934 | config->source = channel->pdev->bam_handle; |
| 935 | config->destination = SPS_DEV_HANDLE_MEM; |
| 936 | config->mode = SPS_MODE_SRC; |
| 937 | config->options = SPS_O_AUTO_ENABLE | |
| 938 | SPS_O_EOT | SPS_O_ACK_TRANSFERS; |
| 939 | config->src_pipe_index = channel->id; |
| 940 | config->desc.size = |
| 941 | (TSPP_SPS_DESCRIPTOR_COUNT + 1) * SPS_DESCRIPTOR_SIZE; |
| 942 | config->desc.base = dma_alloc_coherent(NULL, |
| 943 | config->desc.size, |
| 944 | &config->desc.phys_base, |
| 945 | GFP_KERNEL); |
| 946 | if (config->desc.base == 0) { |
| 947 | pr_err("tspp: error allocating sps descriptors"); |
| 948 | rc = -ENOMEM; |
| 949 | goto err_desc_alloc; |
| 950 | } |
| 951 | |
| 952 | memset(config->desc.base, 0, config->desc.size); |
| 953 | |
| 954 | rc = sps_connect(channel->pipe, config); |
| 955 | if (rc) { |
| 956 | pr_err("tspp: error connecting bam"); |
| 957 | goto err_connect; |
| 958 | } |
| 959 | |
| 960 | event->mode = SPS_TRIGGER_CALLBACK; |
| 961 | event->options = SPS_O_EOT; |
| 962 | event->callback = tspp_sps_complete_cb; |
| 963 | event->xfer_done = NULL; |
| 964 | event->user = channel; |
| 965 | |
| 966 | rc = sps_register_event(channel->pipe, event); |
| 967 | if (rc) { |
| 968 | pr_err("tspp: error registering event"); |
| 969 | goto err_event; |
| 970 | } |
| 971 | |
| 972 | rc = pm_runtime_get(&channel->pdev->pdev->dev); |
| 973 | if (rc < 0) { |
| 974 | dev_err(&channel->pdev->pdev->dev, |
| 975 | "Runtime PM: Unable to wake up tspp device, rc = %d", |
| 976 | rc); |
| 977 | } |
| 978 | |
| 979 | wake_lock(&channel->pdev->wake_lock); |
| 980 | return 0; |
| 981 | |
| 982 | err_event: |
| 983 | sps_disconnect(channel->pipe); |
| 984 | err_connect: |
| 985 | dma_free_coherent(NULL, config->desc.size, config->desc.base, |
| 986 | config->desc.phys_base); |
| 987 | err_desc_alloc: |
| 988 | sps_free_endpoint(channel->pipe); |
| 989 | err_sps_alloc: |
| 990 | return rc; |
| 991 | } |
| 992 | EXPORT_SYMBOL(tspp_open_channel); |
| 993 | |
| 994 | int tspp_close_channel(struct tspp_channel *channel) |
| 995 | { |
| 996 | int i; |
| 997 | int id; |
| 998 | u32 val; |
| 999 | struct sps_connect *config = &channel->config; |
| 1000 | struct tspp_device *pdev = channel->pdev; |
| 1001 | |
| 1002 | TSPP_DEBUG("tspp_close_channel"); |
| 1003 | channel->used = 0; |
| 1004 | |
| 1005 | /* disable pipe (channel) */ |
| 1006 | val = readl_relaxed(pdev->base + TSPP_PS_DISABLE); |
| 1007 | writel_relaxed(val | channel->id, pdev->base + TSPP_PS_DISABLE); |
| 1008 | wmb(); |
| 1009 | |
| 1010 | /* unregister all filters for this channel */ |
| 1011 | for (i = 0; i < TSPP_NUM_PRIORITIES; i++) { |
| 1012 | struct tspp_pid_filter *tspp_filter = |
| 1013 | &tspp_filter_table[channel->src]->filter[i]; |
| 1014 | id = FILTER_GET_PIPE_NUMBER0(tspp_filter); |
| 1015 | if (id == channel->id) { |
| 1016 | if (FILTER_HAS_ENCRYPTION(tspp_filter)) |
| 1017 | tspp_free_key_entry( |
| 1018 | FILTER_GET_KEY_NUMBER(tspp_filter)); |
| 1019 | tspp_filter->config = 0; |
| 1020 | tspp_filter->filter = 0; |
| 1021 | } |
| 1022 | } |
| 1023 | channel->filter_count = 0; |
| 1024 | |
| 1025 | /* stop the stream */ |
| 1026 | tspp_close_stream(channel); |
| 1027 | |
| 1028 | /* disconnect the bam */ |
| 1029 | if (sps_disconnect(channel->pipe) != 0) |
| 1030 | pr_warn("tspp: Error freeing sps endpoint (%i)", channel->id); |
| 1031 | |
| 1032 | /* destroy the buffers */ |
| 1033 | dma_free_coherent(NULL, config->desc.size, config->desc.base, |
| 1034 | config->desc.phys_base); |
| 1035 | |
| 1036 | for (i = 0; i < TSPP_NUM_BUFFERS; i++) { |
| 1037 | if (channel->buffer[i].mem.phys_base) { |
| 1038 | #ifdef TSPP_USE_DMA_ALLOC_COHERENT |
| 1039 | dma_free_coherent(NULL, |
| 1040 | channel->buffer[i].mem.size, |
| 1041 | channel->buffer[i].mem.base, |
| 1042 | channel->buffer[i].mem.phys_base); |
| 1043 | #else |
| 1044 | dma_unmap_single(channel->dd, |
| 1045 | channel->buffer[i].mem.phys_base, |
| 1046 | channel->buffer[i].mem.size, |
| 1047 | 0); |
| 1048 | kfree(channel->buffer[i].mem.base); |
| 1049 | #endif |
| 1050 | channel->buffer[i].mem.phys_base = 0; |
| 1051 | } |
| 1052 | channel->buffer[i].mem.base = 0; |
| 1053 | channel->buffer[i].state = TSPP_BUF_STATE_EMPTY; |
| 1054 | } |
| 1055 | channel->buffer_count = 0; |
| 1056 | |
| 1057 | wake_unlock(&channel->pdev->wake_lock); |
| 1058 | return 0; |
| 1059 | } |
| 1060 | EXPORT_SYMBOL(tspp_close_channel); |
| 1061 | |
| 1062 | /* picks a stream for this channel */ |
| 1063 | int tspp_select_source(struct tspp_channel *channel, |
| 1064 | struct tspp_select_source *src) |
| 1065 | { |
| 1066 | /* make sure the requested src id is in bounds */ |
| 1067 | if (src->source > TSPP_SOURCE_MEM) { |
| 1068 | pr_err("tspp source out of bounds"); |
| 1069 | return 1; |
| 1070 | } |
| 1071 | |
| 1072 | /* open the stream */ |
| 1073 | tspp_open_stream(channel, src->source); |
| 1074 | |
| 1075 | return 0; |
| 1076 | } |
| 1077 | EXPORT_SYMBOL(tspp_select_source); |
| 1078 | |
| 1079 | int tspp_add_filter(struct tspp_channel *channel, |
| 1080 | struct tspp_filter *filter) |
| 1081 | { |
| 1082 | int i; |
| 1083 | int other_channel; |
| 1084 | int entry; |
| 1085 | u32 val, pid, enabled; |
| 1086 | struct tspp_device *pdev = channel->pdev; |
| 1087 | struct tspp_pid_filter p; |
| 1088 | |
| 1089 | TSPP_DEBUG("tspp_add_filter"); |
| 1090 | if (filter->source > TSPP_SOURCE_MEM) { |
| 1091 | pr_err("tspp invalid source"); |
| 1092 | return 1; |
| 1093 | } |
| 1094 | |
| 1095 | if (filter->priority >= TSPP_NUM_PRIORITIES) { |
| 1096 | pr_err("tspp invalid source"); |
| 1097 | return 1; |
| 1098 | } |
| 1099 | |
| 1100 | /* make sure this filter mode matches the channel mode */ |
| 1101 | switch (channel->mode) { |
| 1102 | case TSPP_MODE_DISABLED: |
| 1103 | channel->mode = filter->mode; |
| 1104 | break; |
| 1105 | case TSPP_MODE_RAW: |
| 1106 | case TSPP_MODE_PES: |
| 1107 | case TSPP_MODE_RAW_NO_SUFFIX: |
| 1108 | if (filter->mode != channel->mode) { |
| 1109 | pr_err("tspp: wrong filter mode"); |
| 1110 | return 1; |
| 1111 | } |
| 1112 | } |
| 1113 | |
| 1114 | if (filter->mode == TSPP_MODE_PES) { |
| 1115 | for (i = 0; i < TSPP_NUM_PRIORITIES; i++) { |
| 1116 | struct tspp_pid_filter *tspp_filter = |
| 1117 | &tspp_filter_table[channel->src]->filter[i]; |
| 1118 | pid = FILTER_GET_PIPE_PID((tspp_filter)); |
| 1119 | enabled = FILTER_GET_PIPE_PROCESS0(tspp_filter); |
| 1120 | if (enabled && (pid == filter->pid)) { |
| 1121 | other_channel = |
| 1122 | FILTER_GET_PIPE_NUMBER0(tspp_filter); |
| 1123 | pr_err("tspp: pid 0x%x already in use by channel %i", |
| 1124 | filter->pid, other_channel); |
| 1125 | return 1; |
| 1126 | } |
| 1127 | } |
| 1128 | } |
| 1129 | |
| 1130 | /* make sure this priority is not already in use */ |
| 1131 | enabled = FILTER_GET_PIPE_PROCESS0( |
| 1132 | (&(tspp_filter_table[channel->src]->filter[filter->priority]))); |
| 1133 | if (enabled) { |
| 1134 | pr_err("tspp: filter priority %i source %i is already enabled\n", |
| 1135 | filter->priority, channel->src); |
| 1136 | return 1; |
| 1137 | } |
| 1138 | |
| 1139 | if (channel->mode == TSPP_MODE_PES) { |
| 1140 | /* if we are already processing in PES mode, disable pipe |
| 1141 | (channel) and filter to be updated */ |
| 1142 | val = readl_relaxed(pdev->base + TSPP_PS_DISABLE); |
| 1143 | writel_relaxed(val | (1 << channel->id), |
| 1144 | pdev->base + TSPP_PS_DISABLE); |
| 1145 | wmb(); |
| 1146 | } |
| 1147 | |
| 1148 | /* update entry */ |
| 1149 | p.filter = 0; |
| 1150 | p.config = 0; |
| 1151 | FILTER_SET_PIPE_PROCESS0((&p), filter->mode); |
| 1152 | FILTER_SET_PIPE_PID((&p), filter->pid); |
| 1153 | FILTER_SET_PID_MASK((&p), filter->mask); |
| 1154 | FILTER_SET_PIPE_NUMBER0((&p), channel->id); |
| 1155 | FILTER_SET_PIPE_PROCESS1((&p), TSPP_MODE_DISABLED); |
| 1156 | if (filter->decrypt) { |
| 1157 | entry = tspp_get_key_entry(); |
| 1158 | if (entry == -1) { |
| 1159 | pr_err("tspp: no more keys available!"); |
| 1160 | } else { |
| 1161 | p.config |= FILTER_DECRYPT; |
| 1162 | FILTER_SET_KEY_NUMBER((&p), entry); |
| 1163 | } |
| 1164 | } |
| 1165 | TSPP_DEBUG("tspp_add_filter: mode=%i pid=%i mask=%i channel=%i", |
| 1166 | filter->mode, filter->pid, filter->mask, channel->id); |
| 1167 | |
| 1168 | tspp_filter_table[channel->src]-> |
| 1169 | filter[filter->priority].config = p.config; |
| 1170 | tspp_filter_table[channel->src]-> |
| 1171 | filter[filter->priority].filter = p.filter; |
| 1172 | |
| 1173 | /* reenable pipe */ |
| 1174 | val = readl_relaxed(pdev->base + TSPP_PS_DISABLE); |
| 1175 | writel_relaxed(val & ~(1 << channel->id), pdev->base + TSPP_PS_DISABLE); |
| 1176 | wmb(); |
| 1177 | val = readl_relaxed(pdev->base + TSPP_PS_DISABLE); |
| 1178 | |
| 1179 | /* allocate buffers if needed */ |
| 1180 | if (channel->buffer_count == 0) { |
| 1181 | TSPP_DEBUG("tspp: no buffers need %i", TSPP_NUM_BUFFERS); |
| 1182 | for (i = 0; i < TSPP_NUM_BUFFERS; i++) { |
| 1183 | if (tspp_alloc_buffer(&channel->buffer[i].mem, |
| 1184 | channel) != 0) { |
| 1185 | pr_warn("tspp: Can't allocate buffer %i", i); |
| 1186 | } else { |
| 1187 | channel->buffer[i].filled = 0; |
| 1188 | channel->buffer[i].read_index = 0; |
| 1189 | channel->buffer_count++; |
| 1190 | |
| 1191 | /* start the transfer */ |
| 1192 | if (sps_transfer_one(channel->pipe, |
| 1193 | channel->buffer[i].mem.phys_base, |
| 1194 | channel->buffer[i].mem.size, |
| 1195 | channel, |
| 1196 | SPS_IOVEC_FLAG_INT | |
| 1197 | SPS_IOVEC_FLAG_EOB)) |
| 1198 | pr_err("tspp: can't submit transfer"); |
| 1199 | else |
| 1200 | channel->buffer[i].state = |
| 1201 | TSPP_BUF_STATE_WAITING; |
| 1202 | } |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | if (channel->buffer_count < MIN_ACCEPTABLE_BUFFER_COUNT) { |
| 1207 | pr_err("failed to allocate at least %i buffers", |
| 1208 | MIN_ACCEPTABLE_BUFFER_COUNT); |
| 1209 | return -ENOMEM; |
| 1210 | } |
| 1211 | |
| 1212 | channel->filter_count++; |
| 1213 | |
| 1214 | return 0; |
| 1215 | } |
| 1216 | EXPORT_SYMBOL(tspp_add_filter); |
| 1217 | |
| 1218 | int tspp_remove_filter(struct tspp_channel *channel, |
| 1219 | struct tspp_filter *filter) |
| 1220 | { |
| 1221 | int entry; |
| 1222 | u32 val; |
| 1223 | struct tspp_device *pdev = channel->pdev; |
| 1224 | int src = channel->src; |
| 1225 | struct tspp_pid_filter *tspp_filter = |
| 1226 | &(tspp_filter_table[src]->filter[filter->priority]); |
| 1227 | |
| 1228 | /* disable pipe (channel) */ |
| 1229 | val = readl_relaxed(pdev->base + TSPP_PS_DISABLE); |
| 1230 | writel_relaxed(val | channel->id, pdev->base + TSPP_PS_DISABLE); |
| 1231 | wmb(); |
| 1232 | |
| 1233 | /* update data keys */ |
| 1234 | if (tspp_filter->config & FILTER_DECRYPT) { |
| 1235 | entry = FILTER_GET_KEY_NUMBER(tspp_filter); |
| 1236 | tspp_free_key_entry(entry); |
| 1237 | } |
| 1238 | |
| 1239 | /* update pid table */ |
| 1240 | tspp_filter->config = 0; |
| 1241 | tspp_filter->filter = 0; |
| 1242 | |
| 1243 | channel->filter_count--; |
| 1244 | |
| 1245 | /* reenable pipe */ |
| 1246 | val = readl_relaxed(pdev->base + TSPP_PS_DISABLE); |
| 1247 | writel_relaxed(val & ~(1 << channel->id), |
| 1248 | pdev->base + TSPP_PS_DISABLE); |
| 1249 | wmb(); |
| 1250 | val = readl_relaxed(pdev->base + TSPP_PS_DISABLE); |
| 1251 | |
| 1252 | return 0; |
| 1253 | } |
| 1254 | EXPORT_SYMBOL(tspp_remove_filter); |
| 1255 | |
| 1256 | int tspp_set_key(struct tspp_channel *channel, struct tspp_key* key) |
| 1257 | { |
| 1258 | int i; |
| 1259 | int id; |
| 1260 | int key_index; |
| 1261 | int data; |
| 1262 | |
| 1263 | /* read the key index used by this channel */ |
| 1264 | for (i = 0; i < TSPP_NUM_PRIORITIES; i++) { |
| 1265 | struct tspp_pid_filter *tspp_filter = |
| 1266 | &(tspp_filter_table[channel->src]->filter[i]); |
| 1267 | id = FILTER_GET_PIPE_NUMBER0(tspp_filter); |
| 1268 | if (id == channel->id) { |
| 1269 | if (FILTER_HAS_ENCRYPTION(tspp_filter)) { |
| 1270 | key_index = FILTER_GET_KEY_NUMBER(tspp_filter); |
| 1271 | break; |
| 1272 | } |
| 1273 | } |
| 1274 | } |
| 1275 | if (i == TSPP_NUM_PRIORITIES) { |
| 1276 | pr_err("tspp: no encryption on this channel"); |
| 1277 | return 1; |
| 1278 | } |
| 1279 | |
| 1280 | if (key->parity == TSPP_KEY_PARITY_EVEN) { |
| 1281 | tspp_key_table->entry[key_index].even_lsb = key->lsb; |
| 1282 | tspp_key_table->entry[key_index].even_msb = key->msb; |
| 1283 | } else { |
| 1284 | tspp_key_table->entry[key_index].odd_lsb = key->lsb; |
| 1285 | tspp_key_table->entry[key_index].odd_msb = key->msb; |
| 1286 | } |
| 1287 | data = readl_relaxed(channel->pdev->base + TSPP_KEY_VALID); |
| 1288 | |
| 1289 | return 0; |
| 1290 | } |
| 1291 | EXPORT_SYMBOL(tspp_set_key); |
| 1292 | |
| 1293 | static int tspp_set_iv(struct tspp_channel *channel, struct tspp_iv *iv) |
| 1294 | { |
| 1295 | struct tspp_device *pdev = channel->pdev; |
| 1296 | |
| 1297 | writel_relaxed(iv->data[0], pdev->base + TSPP_CBC_INIT_VAL(0)); |
| 1298 | writel_relaxed(iv->data[1], pdev->base + TSPP_CBC_INIT_VAL(1)); |
| 1299 | return 0; |
| 1300 | } |
| 1301 | |
| 1302 | static int tspp_set_system_keys(struct tspp_channel *channel, |
| 1303 | struct tspp_system_keys *keys) |
| 1304 | { |
| 1305 | int i; |
| 1306 | struct tspp_device *pdev = channel->pdev; |
| 1307 | |
| 1308 | for (i = 0; i < TSPP_NUM_SYSTEM_KEYS; i++) |
| 1309 | writel_relaxed(keys->data[i], pdev->base + TSPP_SYSTEM_KEY(i)); |
| 1310 | |
| 1311 | return 0; |
| 1312 | } |
| 1313 | |
| 1314 | static int tspp_set_buffer_size(struct tspp_channel *channel, |
| 1315 | struct tspp_buffer *buf) |
| 1316 | { |
| 1317 | if (buf->size < TSPP_MIN_BUFFER_SIZE) |
| 1318 | channel->bufsize = TSPP_MIN_BUFFER_SIZE; |
| 1319 | else if (buf->size > TSPP_MAX_BUFFER_SIZE) |
| 1320 | channel->bufsize = TSPP_MAX_BUFFER_SIZE; |
| 1321 | else |
| 1322 | channel->bufsize = buf->size; |
| 1323 | |
| 1324 | TSPP_DEBUG("tspp channel %i buffer size %i", |
| 1325 | channel->id, channel->bufsize); |
| 1326 | |
| 1327 | return 0; |
| 1328 | } |
| 1329 | |
| 1330 | /*** File Operations ***/ |
| 1331 | static ssize_t tspp_open(struct inode *inode, struct file *filp) |
| 1332 | { |
| 1333 | struct tspp_channel *channel; |
| 1334 | channel = container_of(inode->i_cdev, struct tspp_channel, cdev); |
| 1335 | filp->private_data = channel; |
| 1336 | |
| 1337 | /* if this channel is already in use, quit */ |
| 1338 | if (channel->used) { |
| 1339 | pr_err("tspp channel %i already in use", |
| 1340 | MINOR(channel->cdev.dev)); |
| 1341 | return -EACCES; |
| 1342 | } |
| 1343 | |
| 1344 | if (tspp_open_channel(channel) != 0) { |
| 1345 | pr_err("tspp: error opening channel"); |
| 1346 | return -EACCES; |
| 1347 | } |
| 1348 | |
| 1349 | return 0; |
| 1350 | } |
| 1351 | |
| 1352 | static unsigned int tspp_poll(struct file *filp, struct poll_table_struct *p) |
| 1353 | { |
| 1354 | unsigned long flags; |
| 1355 | unsigned int mask = 0; |
| 1356 | struct tspp_channel *channel; |
| 1357 | channel = filp->private_data; |
| 1358 | |
| 1359 | /* register the wait queue for this channel */ |
| 1360 | poll_wait(filp, &channel->in_queue, p); |
| 1361 | |
| 1362 | spin_lock_irqsave(&channel->pdev->spinlock, flags); |
| 1363 | if (channel->buffer[channel->read].state == TSPP_BUF_STATE_DATA) |
| 1364 | mask = POLLIN | POLLRDNORM; |
| 1365 | |
| 1366 | spin_unlock_irqrestore(&channel->pdev->spinlock, flags); |
| 1367 | |
| 1368 | return mask; |
| 1369 | } |
| 1370 | |
| 1371 | static ssize_t tspp_release(struct inode *inode, struct file *filp) |
| 1372 | { |
| 1373 | struct tspp_channel *channel; |
| 1374 | channel = filp->private_data; |
| 1375 | |
| 1376 | pr_info("tspp_release"); |
| 1377 | tspp_close_channel(channel); |
| 1378 | |
| 1379 | return 0; |
| 1380 | } |
| 1381 | |
| 1382 | static ssize_t tspp_read(struct file *filp, char __user *buf, size_t count, |
| 1383 | loff_t *f_pos) |
| 1384 | { |
| 1385 | size_t size = 0; |
| 1386 | size_t transferred = 0; |
| 1387 | struct tspp_channel *channel; |
| 1388 | struct tspp_mem_buffer *buffer; |
| 1389 | channel = filp->private_data; |
| 1390 | |
| 1391 | TSPP_DEBUG("tspp_read"); |
| 1392 | buffer = &channel->buffer[channel->read]; |
| 1393 | /* see if we have any buffers ready to read */ |
| 1394 | while (buffer->state != TSPP_BUF_STATE_DATA) { |
| 1395 | if (filp->f_flags & O_NONBLOCK) { |
| 1396 | pr_warn("tspp: nothing to read on channel %i!", |
| 1397 | channel->id); |
| 1398 | return -EAGAIN; |
| 1399 | } |
| 1400 | /* go to sleep if there is nothing to read */ |
| 1401 | TSPP_DEBUG("tspp: sleeping"); |
| 1402 | if (wait_event_interruptible(channel->in_queue, |
| 1403 | (buffer->state == TSPP_BUF_STATE_DATA))) { |
| 1404 | pr_err("tspp: rude awakening\n"); |
| 1405 | return -ERESTARTSYS; |
| 1406 | } |
| 1407 | } |
| 1408 | |
| 1409 | while (buffer->state == TSPP_BUF_STATE_DATA) { |
| 1410 | size = min(count, buffer->filled); |
| 1411 | TSPP_DEBUG("tspp: reading channel %i buffer %i size %i", |
| 1412 | channel->id, channel->read, size); |
| 1413 | if (size == 0) |
| 1414 | break; |
| 1415 | |
| 1416 | #ifndef TSPP_USE_DMA_ALLOC_COHERENT |
| 1417 | /* unmap buffer (invalidates processor cache) */ |
| 1418 | if (buffer->mem.phys_base) { |
| 1419 | dma_unmap_single(NULL, |
| 1420 | buffer->mem.phys_base, |
| 1421 | buffer->mem.size, |
| 1422 | DMA_FROM_DEVICE); |
| 1423 | buffer->mem.phys_base = 0; |
| 1424 | } |
| 1425 | #endif |
| 1426 | |
| 1427 | if (copy_to_user(buf, buffer->mem.base + |
| 1428 | buffer->read_index, size)) { |
| 1429 | pr_err("tspp: error copying to user buffer"); |
| 1430 | return -EFAULT; |
| 1431 | } |
| 1432 | buf += size; |
| 1433 | count -= size; |
| 1434 | transferred += size; |
| 1435 | buffer->read_index += size; |
| 1436 | |
| 1437 | /* after reading the end of the buffer, requeue it, |
| 1438 | and set up for reading the next one */ |
| 1439 | if (buffer->read_index == |
| 1440 | channel->buffer[channel->read].filled) { |
| 1441 | buffer->state = TSPP_BUF_STATE_WAITING; |
| 1442 | #ifndef TSPP_USE_DMA_ALLOC_COHERENT |
| 1443 | buffer->mem.phys_base = dma_map_single(NULL, |
| 1444 | buffer->mem.base, |
| 1445 | buffer->mem.size, |
| 1446 | DMA_FROM_DEVICE); |
| 1447 | if (!dma_mapping_error(NULL, |
| 1448 | buffer->mem.phys_base)) { |
| 1449 | #endif |
| 1450 | if (sps_transfer_one(channel->pipe, |
| 1451 | buffer->mem.phys_base, |
| 1452 | buffer->mem.size, |
| 1453 | channel, |
| 1454 | SPS_IOVEC_FLAG_INT | |
| 1455 | SPS_IOVEC_FLAG_EOT)) |
| 1456 | pr_err("tspp: can't submit transfer"); |
| 1457 | else { |
| 1458 | channel->read++; |
| 1459 | if (channel->read == TSPP_NUM_BUFFERS) |
| 1460 | channel->read = 0; |
| 1461 | } |
| 1462 | #ifndef TSPP_USE_DMA_ALLOC_COHERENT |
| 1463 | } |
| 1464 | #endif |
| 1465 | } |
| 1466 | } |
| 1467 | |
| 1468 | return transferred; |
| 1469 | } |
| 1470 | |
| 1471 | static long tspp_ioctl(struct file *filp, |
| 1472 | unsigned int param0, unsigned long param1) |
| 1473 | { |
| 1474 | int rc = -1; |
| 1475 | struct tspp_channel *channel; |
| 1476 | channel = filp->private_data; |
| 1477 | |
| 1478 | if (!param1) |
| 1479 | return -EINVAL; |
| 1480 | |
| 1481 | switch (param0) { |
| 1482 | case TSPP_IOCTL_SELECT_SOURCE: |
| 1483 | rc = tspp_select_source(channel, |
| 1484 | (struct tspp_select_source *)param1); |
| 1485 | break; |
| 1486 | case TSPP_IOCTL_ADD_FILTER: |
| 1487 | rc = tspp_add_filter(channel, |
| 1488 | (struct tspp_filter *)param1); |
| 1489 | break; |
| 1490 | case TSPP_IOCTL_REMOVE_FILTER: |
| 1491 | rc = tspp_remove_filter(channel, |
| 1492 | (struct tspp_filter *)param1); |
| 1493 | break; |
| 1494 | case TSPP_IOCTL_SET_KEY: |
| 1495 | rc = tspp_set_key(channel, |
| 1496 | (struct tspp_key *)param1); |
| 1497 | break; |
| 1498 | case TSPP_IOCTL_SET_IV: |
| 1499 | rc = tspp_set_iv(channel, |
| 1500 | (struct tspp_iv *)param1); |
| 1501 | break; |
| 1502 | case TSPP_IOCTL_SET_SYSTEM_KEYS: |
| 1503 | rc = tspp_set_system_keys(channel, |
| 1504 | (struct tspp_system_keys *)param1); |
| 1505 | break; |
| 1506 | case TSPP_IOCTL_BUFFER_SIZE: |
| 1507 | rc = tspp_set_buffer_size(channel, |
| 1508 | (struct tspp_buffer *)param1); |
| 1509 | break; |
| 1510 | case TSPP_IOCTL_LOOPBACK: |
| 1511 | loopback_mode = param1; |
| 1512 | rc = 0; |
| 1513 | break; |
| 1514 | default: |
| 1515 | pr_err("tspp: Unknown ioctl %i", param0); |
| 1516 | } |
| 1517 | |
| 1518 | /* normalize the return code in case one of the subfunctions does |
| 1519 | something weird */ |
| 1520 | if (rc != 0) |
| 1521 | rc = 1; |
| 1522 | |
| 1523 | return rc; |
| 1524 | } |
| 1525 | |
| 1526 | /*** debugfs ***/ |
| 1527 | #ifdef TSPP_USE_DEBUGFS |
| 1528 | static int debugfs_iomem_x32_set(void *data, u64 val) |
| 1529 | { |
| 1530 | writel_relaxed(val, data); |
| 1531 | wmb(); |
| 1532 | return 0; |
| 1533 | } |
| 1534 | |
| 1535 | static int debugfs_iomem_x32_get(void *data, u64 *val) |
| 1536 | { |
| 1537 | *val = readl_relaxed(data); |
| 1538 | return 0; |
| 1539 | } |
| 1540 | |
| 1541 | DEFINE_SIMPLE_ATTRIBUTE(fops_iomem_x32, debugfs_iomem_x32_get, |
| 1542 | debugfs_iomem_x32_set, "0x%08llx"); |
| 1543 | |
| 1544 | static void tsif_debugfs_init(struct tspp_tsif_device *tsif_device, |
| 1545 | int instance) |
| 1546 | { |
| 1547 | char name[10]; |
| 1548 | snprintf(name, 10, "tsif%i", instance); |
| 1549 | tsif_device->dent_tsif = debugfs_create_dir( |
| 1550 | name, NULL); |
| 1551 | if (tsif_device->dent_tsif) { |
| 1552 | int i; |
| 1553 | void __iomem *base = tsif_device->base; |
| 1554 | for (i = 0; i < ARRAY_SIZE(debugfs_tsif_regs); i++) { |
| 1555 | tsif_device->debugfs_tsif_regs[i] = |
| 1556 | debugfs_create_file( |
| 1557 | debugfs_tsif_regs[i].name, |
| 1558 | debugfs_tsif_regs[i].mode, |
| 1559 | tsif_device->dent_tsif, |
| 1560 | base + debugfs_tsif_regs[i].offset, |
| 1561 | &fops_iomem_x32); |
| 1562 | } |
| 1563 | } |
| 1564 | } |
| 1565 | |
| 1566 | static void tsif_debugfs_exit(struct tspp_tsif_device *tsif_device) |
| 1567 | { |
| 1568 | if (tsif_device->dent_tsif) { |
| 1569 | int i; |
| 1570 | debugfs_remove_recursive(tsif_device->dent_tsif); |
| 1571 | tsif_device->dent_tsif = NULL; |
| 1572 | for (i = 0; i < ARRAY_SIZE(debugfs_tsif_regs); i++) |
| 1573 | tsif_device->debugfs_tsif_regs[i] = NULL; |
| 1574 | } |
| 1575 | } |
| 1576 | |
| 1577 | static void tspp_debugfs_init(struct tspp_device *device, int instance) |
| 1578 | { |
| 1579 | char name[10]; |
| 1580 | snprintf(name, 10, "tspp%i", instance); |
| 1581 | device->dent = debugfs_create_dir( |
| 1582 | name, NULL); |
| 1583 | if (device->dent) { |
| 1584 | int i; |
| 1585 | void __iomem *base = device->base; |
| 1586 | for (i = 0; i < ARRAY_SIZE(debugfs_tspp_regs); i++) { |
| 1587 | device->debugfs_regs[i] = |
| 1588 | debugfs_create_file( |
| 1589 | debugfs_tspp_regs[i].name, |
| 1590 | debugfs_tspp_regs[i].mode, |
| 1591 | device->dent, |
| 1592 | base + debugfs_tspp_regs[i].offset, |
| 1593 | &fops_iomem_x32); |
| 1594 | } |
| 1595 | } |
| 1596 | } |
| 1597 | |
| 1598 | static void tspp_debugfs_exit(struct tspp_device *device) |
| 1599 | { |
| 1600 | if (device->dent) { |
| 1601 | int i; |
| 1602 | debugfs_remove_recursive(device->dent); |
| 1603 | device->dent = NULL; |
| 1604 | for (i = 0; i < ARRAY_SIZE(debugfs_tspp_regs); i++) |
| 1605 | device->debugfs_regs[i] = NULL; |
| 1606 | } |
| 1607 | } |
| 1608 | #endif /* TSPP_USE_DEBUGFS */ |
| 1609 | |
| 1610 | static const struct file_operations tspp_fops = { |
| 1611 | .owner = THIS_MODULE, |
| 1612 | .read = tspp_read, |
| 1613 | .open = tspp_open, |
| 1614 | .poll = tspp_poll, |
| 1615 | .release = tspp_release, |
| 1616 | .unlocked_ioctl = tspp_ioctl, |
| 1617 | }; |
| 1618 | |
| 1619 | static int tspp_channel_init(struct tspp_channel *channel) |
| 1620 | { |
| 1621 | channel->bufsize = TSPP_MIN_BUFFER_SIZE; |
| 1622 | channel->read = 0; |
| 1623 | channel->waiting = 0; |
| 1624 | cdev_init(&channel->cdev, &tspp_fops); |
| 1625 | channel->cdev.owner = THIS_MODULE; |
| 1626 | channel->id = MINOR(tspp_minor); |
| 1627 | init_waitqueue_head(&channel->in_queue); |
| 1628 | channel->buffer_count = 0; |
| 1629 | channel->filter_count = 0; |
| 1630 | |
| 1631 | if (cdev_add(&channel->cdev, tspp_minor++, 1) != 0) { |
| 1632 | pr_err("tspp: cdev_add failed"); |
| 1633 | return 1; |
| 1634 | } |
| 1635 | |
| 1636 | channel->dd = device_create(tspp_class, NULL, channel->cdev.dev, |
| 1637 | channel, "tspp%02d", channel->id); |
| 1638 | if (IS_ERR(channel->dd)) { |
| 1639 | pr_err("tspp: device_create failed: %i", |
| 1640 | (int)PTR_ERR(channel->dd)); |
| 1641 | cdev_del(&channel->cdev); |
| 1642 | return 1; |
| 1643 | } |
| 1644 | |
| 1645 | return 0; |
| 1646 | } |
| 1647 | |
| 1648 | static int __devinit msm_tspp_probe(struct platform_device *pdev) |
| 1649 | { |
| 1650 | int rc = -ENODEV; |
| 1651 | u32 version; |
| 1652 | u32 i; |
| 1653 | struct msm_tspp_platform_data *data; |
| 1654 | struct tspp_device *device; |
| 1655 | struct resource *mem_tsif0; |
| 1656 | struct resource *mem_tsif1; |
| 1657 | struct resource *mem_tspp; |
| 1658 | struct resource *mem_bam; |
| 1659 | struct tspp_channel *channel; |
| 1660 | |
| 1661 | /* must have platform data */ |
| 1662 | data = pdev->dev.platform_data; |
| 1663 | if (!data) { |
| 1664 | pr_err("tspp: Platform data not available"); |
| 1665 | rc = -EINVAL; |
| 1666 | goto out; |
| 1667 | } |
| 1668 | |
| 1669 | /* check for valid device id */ |
| 1670 | if ((pdev->id < 0) || (pdev->id >= 1)) { |
| 1671 | pr_err("tspp: Invalid device ID %d", pdev->id); |
| 1672 | rc = -EINVAL; |
| 1673 | goto out; |
| 1674 | } |
| 1675 | |
| 1676 | /* OK, we will use this device */ |
| 1677 | device = kzalloc(sizeof(struct tspp_device), GFP_KERNEL); |
| 1678 | if (!device) { |
| 1679 | pr_err("tspp: Failed to allocate memory for device"); |
| 1680 | rc = -ENOMEM; |
| 1681 | goto out; |
| 1682 | } |
| 1683 | |
| 1684 | /* set up references */ |
| 1685 | device->pdev = pdev; |
| 1686 | platform_set_drvdata(pdev, device); |
| 1687 | |
| 1688 | /* map clocks */ |
| 1689 | if (data->tsif_pclk) { |
Joel Nider | b9662ca | 2012-06-10 14:21:11 +0300 | [diff] [blame^] | 1690 | device->tsif_pclk = clk_get(&pdev->dev, data->tsif_pclk); |
Joel Nider | 5556a85 | 2011-10-16 10:52:13 +0200 | [diff] [blame] | 1691 | if (IS_ERR(device->tsif_pclk)) { |
| 1692 | pr_err("tspp: failed to get %s", |
| 1693 | data->tsif_pclk); |
| 1694 | rc = PTR_ERR(device->tsif_pclk); |
| 1695 | device->tsif_pclk = NULL; |
| 1696 | goto err_pclock; |
| 1697 | } |
| 1698 | } |
| 1699 | if (data->tsif_ref_clk) { |
Joel Nider | b9662ca | 2012-06-10 14:21:11 +0300 | [diff] [blame^] | 1700 | device->tsif_ref_clk = clk_get(&pdev->dev, data->tsif_ref_clk); |
Joel Nider | 5556a85 | 2011-10-16 10:52:13 +0200 | [diff] [blame] | 1701 | if (IS_ERR(device->tsif_ref_clk)) { |
| 1702 | pr_err("tspp: failed to get %s", |
| 1703 | data->tsif_ref_clk); |
| 1704 | rc = PTR_ERR(device->tsif_ref_clk); |
| 1705 | device->tsif_ref_clk = NULL; |
| 1706 | goto err_refclock; |
| 1707 | } |
| 1708 | } |
| 1709 | |
| 1710 | /* map I/O memory */ |
| 1711 | mem_tsif0 = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1712 | if (!mem_tsif0) { |
| 1713 | pr_err("tspp: Missing tsif0 MEM resource"); |
| 1714 | rc = -ENXIO; |
| 1715 | goto err_res_tsif0; |
| 1716 | } |
| 1717 | device->tsif[0].base = ioremap(mem_tsif0->start, |
| 1718 | resource_size(mem_tsif0)); |
| 1719 | if (!device->tsif[0].base) { |
| 1720 | pr_err("tspp: ioremap failed"); |
| 1721 | goto err_map_tsif0; |
| 1722 | } |
| 1723 | |
| 1724 | mem_tsif1 = platform_get_resource(pdev, IORESOURCE_MEM, 1); |
| 1725 | if (!mem_tsif1) { |
| 1726 | dev_err(&pdev->dev, "Missing tsif1 MEM resource"); |
| 1727 | rc = -ENXIO; |
| 1728 | goto err_res_tsif1; |
| 1729 | } |
| 1730 | device->tsif[1].base = ioremap(mem_tsif1->start, |
| 1731 | resource_size(mem_tsif1)); |
| 1732 | if (!device->tsif[1].base) { |
| 1733 | dev_err(&pdev->dev, "ioremap failed"); |
| 1734 | goto err_map_tsif1; |
| 1735 | } |
| 1736 | |
| 1737 | mem_tspp = platform_get_resource(pdev, IORESOURCE_MEM, 2); |
| 1738 | if (!mem_tspp) { |
| 1739 | dev_err(&pdev->dev, "Missing MEM resource"); |
| 1740 | rc = -ENXIO; |
| 1741 | goto err_res_dev; |
| 1742 | } |
| 1743 | device->base = ioremap(mem_tspp->start, resource_size(mem_tspp)); |
| 1744 | if (!device->base) { |
| 1745 | dev_err(&pdev->dev, "ioremap failed"); |
| 1746 | goto err_map_dev; |
| 1747 | } |
| 1748 | |
| 1749 | mem_bam = platform_get_resource(pdev, IORESOURCE_MEM, 3); |
| 1750 | if (!mem_bam) { |
| 1751 | pr_err("tspp: Missing bam MEM resource"); |
| 1752 | rc = -ENXIO; |
| 1753 | goto err_res_bam; |
| 1754 | } |
| 1755 | memset(&device->bam_props, 0, sizeof(device->bam_props)); |
| 1756 | device->bam_props.phys_addr = mem_bam->start; |
| 1757 | device->bam_props.virt_addr = ioremap(mem_bam->start, |
| 1758 | resource_size(mem_bam)); |
| 1759 | if (!device->bam_props.virt_addr) { |
| 1760 | dev_err(&pdev->dev, "ioremap failed"); |
| 1761 | goto err_map_bam; |
| 1762 | } |
| 1763 | |
| 1764 | /* map TSPP IRQ */ |
| 1765 | rc = platform_get_irq(pdev, 0); |
| 1766 | if (rc > 0) { |
| 1767 | device->tspp_irq = rc; |
| 1768 | rc = request_irq(device->tspp_irq, tspp_isr, IRQF_SHARED, |
| 1769 | dev_name(&pdev->dev), device); |
| 1770 | if (rc) { |
| 1771 | dev_err(&pdev->dev, "failed to request IRQ %d : %d", |
| 1772 | device->tspp_irq, rc); |
| 1773 | goto err_irq; |
| 1774 | } |
| 1775 | } else { |
| 1776 | dev_err(&pdev->dev, "failed to get tspp IRQ"); |
| 1777 | goto err_irq; |
| 1778 | } |
| 1779 | |
| 1780 | /* BAM IRQ */ |
| 1781 | device->bam_irq = TSIF_BAM_IRQ; |
| 1782 | |
| 1783 | /* GPIOs */ |
| 1784 | rc = tspp_start_gpios(device); |
| 1785 | if (rc) |
| 1786 | goto err_gpio; |
| 1787 | |
| 1788 | /* power management */ |
| 1789 | pm_runtime_set_active(&pdev->dev); |
| 1790 | pm_runtime_enable(&pdev->dev); |
| 1791 | |
| 1792 | #ifdef TSPP_USE_DEBUGFS |
| 1793 | tspp_debugfs_init(device, 0); |
| 1794 | |
| 1795 | for (i = 0; i < TSPP_TSIF_INSTANCES; i++) |
| 1796 | tsif_debugfs_init(&device->tsif[i], i); |
| 1797 | #endif /* TSPP_USE_DEBUGFS */ |
| 1798 | |
| 1799 | wake_lock_init(&device->wake_lock, WAKE_LOCK_SUSPEND, |
| 1800 | dev_name(&pdev->dev)); |
| 1801 | |
| 1802 | /* set up pointers to ram-based 'registers' */ |
| 1803 | tspp_filter_table[0] = TSPP_PID_FILTER_TABLE0 + device->base; |
| 1804 | tspp_filter_table[1] = TSPP_PID_FILTER_TABLE1 + device->base; |
| 1805 | tspp_filter_table[2] = TSPP_PID_FILTER_TABLE2 + device->base; |
| 1806 | tspp_key_table = TSPP_DATA_KEY + device->base; |
| 1807 | tspp_global_performance = TSPP_GLOBAL_PERFORMANCE + device->base; |
| 1808 | tspp_pipe_context = TSPP_PIPE_CONTEXT + device->base; |
| 1809 | tspp_pipe_performance = TSPP_PIPE_PERFORMANCE + device->base; |
| 1810 | |
| 1811 | device->bam_props.summing_threshold = 0x10; |
| 1812 | device->bam_props.irq = device->bam_irq; |
| 1813 | device->bam_props.manage = SPS_BAM_MGR_LOCAL; |
| 1814 | |
| 1815 | if (sps_register_bam_device(&device->bam_props, |
| 1816 | &device->bam_handle) != 0) { |
| 1817 | pr_err("tspp: failed to register bam"); |
| 1818 | goto err_bam; |
| 1819 | } |
| 1820 | |
| 1821 | if (device->tsif_pclk && clk_enable(device->tsif_pclk) != 0) { |
| 1822 | dev_err(&pdev->dev, "Can't start pclk"); |
| 1823 | goto err_pclk; |
| 1824 | } |
| 1825 | if (device->tsif_ref_clk && clk_enable(device->tsif_ref_clk) != 0) { |
| 1826 | dev_err(&pdev->dev, "Can't start ref clk"); |
| 1827 | goto err_refclk; |
| 1828 | } |
| 1829 | |
| 1830 | spin_lock_init(&device->spinlock); |
| 1831 | tasklet_init(&device->tlet, tspp_sps_complete_tlet, |
| 1832 | (unsigned long)device); |
| 1833 | |
| 1834 | /* initialize everything to a known state */ |
| 1835 | tspp_global_reset(device); |
| 1836 | |
| 1837 | version = readl_relaxed(device->base + TSPP_VERSION); |
| 1838 | if (version != 1) |
| 1839 | pr_warn("tspp: unrecognized hw version=%i", version); |
| 1840 | |
| 1841 | /* update the channels with the device */ |
| 1842 | for (i = 0; i < TSPP_NUM_CHANNELS; i++) { |
| 1843 | channel = &channel_list[i]; |
| 1844 | channel->pdev = device; |
| 1845 | } |
| 1846 | |
| 1847 | /* everything is ok */ |
| 1848 | return 0; |
| 1849 | |
| 1850 | err_refclk: |
| 1851 | if (device->tsif_pclk) |
| 1852 | clk_disable(device->tsif_pclk); |
| 1853 | err_pclk: |
| 1854 | sps_deregister_bam_device(device->bam_handle); |
| 1855 | err_bam: |
| 1856 | #ifdef TSPP_USE_DEBUGFS |
| 1857 | tspp_debugfs_exit(device); |
| 1858 | for (i = 0; i < TSPP_TSIF_INSTANCES; i++) |
| 1859 | tsif_debugfs_exit(&device->tsif[i]); |
| 1860 | #endif /* TSPP_USE_DEBUGFS */ |
| 1861 | err_gpio: |
| 1862 | err_irq: |
| 1863 | tspp_stop_gpios(device); |
| 1864 | iounmap(device->bam_props.virt_addr); |
| 1865 | err_map_bam: |
| 1866 | err_res_bam: |
| 1867 | iounmap(device->base); |
| 1868 | err_map_dev: |
| 1869 | err_res_dev: |
| 1870 | iounmap(device->tsif[1].base); |
| 1871 | err_map_tsif1: |
| 1872 | err_res_tsif1: |
| 1873 | iounmap(device->tsif[0].base); |
| 1874 | err_map_tsif0: |
| 1875 | err_res_tsif0: |
| 1876 | if (device->tsif_ref_clk) |
| 1877 | clk_put(device->tsif_ref_clk); |
| 1878 | err_refclock: |
| 1879 | if (device->tsif_pclk) |
| 1880 | clk_put(device->tsif_pclk); |
| 1881 | err_pclock: |
| 1882 | kfree(device); |
| 1883 | |
| 1884 | out: |
| 1885 | return rc; |
| 1886 | } |
| 1887 | |
| 1888 | static int __devexit msm_tspp_remove(struct platform_device *pdev) |
| 1889 | { |
| 1890 | #ifdef TSPP_USE_DEBUGFS |
| 1891 | u32 i; |
| 1892 | #endif /* TSPP_USE_DEBUGFS */ |
| 1893 | |
| 1894 | struct tspp_device *device = platform_get_drvdata(pdev); |
| 1895 | |
| 1896 | sps_deregister_bam_device(device->bam_handle); |
| 1897 | |
| 1898 | #ifdef TSPP_USE_DEBUGFS |
| 1899 | for (i = 0; i < TSPP_TSIF_INSTANCES; i++) |
| 1900 | tsif_debugfs_exit(&device->tsif[i]); |
| 1901 | #endif /* TSPP_USE_DEBUGFS */ |
| 1902 | |
| 1903 | wake_lock_destroy(&device->wake_lock); |
| 1904 | free_irq(device->tspp_irq, device); |
| 1905 | tspp_stop_gpios(device); |
| 1906 | |
| 1907 | iounmap(device->bam_props.virt_addr); |
| 1908 | iounmap(device->base); |
| 1909 | for (i = 0; i < TSPP_TSIF_INSTANCES; i++) |
| 1910 | iounmap(device->tsif[i].base); |
| 1911 | |
| 1912 | if (device->tsif_ref_clk) |
| 1913 | clk_put(device->tsif_ref_clk); |
| 1914 | |
| 1915 | if (device->tsif_pclk) |
| 1916 | clk_put(device->tsif_pclk); |
| 1917 | |
| 1918 | pm_runtime_disable(&pdev->dev); |
| 1919 | pm_runtime_put(&pdev->dev); |
| 1920 | kfree(device); |
| 1921 | |
| 1922 | return 0; |
| 1923 | } |
| 1924 | |
| 1925 | /*** power management ***/ |
| 1926 | |
| 1927 | static int tspp_runtime_suspend(struct device *dev) |
| 1928 | { |
| 1929 | dev_dbg(dev, "pm_runtime: suspending..."); |
| 1930 | return 0; |
| 1931 | } |
| 1932 | |
| 1933 | static int tspp_runtime_resume(struct device *dev) |
| 1934 | { |
| 1935 | dev_dbg(dev, "pm_runtime: resuming..."); |
| 1936 | return 0; |
| 1937 | } |
| 1938 | |
| 1939 | static const struct dev_pm_ops tspp_dev_pm_ops = { |
| 1940 | .runtime_suspend = tspp_runtime_suspend, |
| 1941 | .runtime_resume = tspp_runtime_resume, |
| 1942 | }; |
| 1943 | |
| 1944 | static struct platform_driver msm_tspp_driver = { |
| 1945 | .probe = msm_tspp_probe, |
| 1946 | .remove = __exit_p(msm_tspp_remove), |
| 1947 | .driver = { |
| 1948 | .name = "msm_tspp", |
| 1949 | .pm = &tspp_dev_pm_ops, |
| 1950 | }, |
| 1951 | }; |
| 1952 | |
| 1953 | |
| 1954 | static int __init mod_init(void) |
| 1955 | { |
| 1956 | u32 i; |
| 1957 | int rc; |
| 1958 | |
| 1959 | /* first register the driver, and check hardware */ |
| 1960 | rc = platform_driver_register(&msm_tspp_driver); |
| 1961 | if (rc) { |
| 1962 | pr_err("tspp: platform_driver_register failed: %d", rc); |
| 1963 | goto err_register; |
| 1964 | } |
| 1965 | |
| 1966 | /* now make the char devs (channels) */ |
| 1967 | rc = alloc_chrdev_region(&tspp_minor, 0, TSPP_NUM_CHANNELS, "tspp"); |
| 1968 | if (rc) { |
| 1969 | pr_err("tspp: alloc_chrdev_region failed: %d", rc); |
| 1970 | goto err_devrgn; |
| 1971 | } |
| 1972 | |
| 1973 | tspp_class = class_create(THIS_MODULE, "tspp"); |
| 1974 | if (IS_ERR(tspp_class)) { |
| 1975 | rc = PTR_ERR(tspp_class); |
| 1976 | pr_err("tspp: Error creating class: %d", rc); |
| 1977 | goto err_class; |
| 1978 | } |
| 1979 | |
| 1980 | for (i = 0; i < TSPP_NUM_CHANNELS; i++) { |
| 1981 | if (tspp_channel_init(&channel_list[i]) != 0) { |
| 1982 | pr_err("tspp_channel_init failed"); |
| 1983 | break; |
| 1984 | } |
| 1985 | } |
| 1986 | |
| 1987 | return 0; |
| 1988 | |
| 1989 | err_class: |
| 1990 | unregister_chrdev_region(0, TSPP_NUM_CHANNELS); |
| 1991 | err_devrgn: |
| 1992 | platform_driver_unregister(&msm_tspp_driver); |
| 1993 | err_register: |
| 1994 | return rc; |
| 1995 | } |
| 1996 | |
| 1997 | static void __exit mod_exit(void) |
| 1998 | { |
| 1999 | u32 i; |
| 2000 | struct tspp_channel *channel; |
| 2001 | |
| 2002 | /* first delete upper layer interface */ |
| 2003 | for (i = 0; i < TSPP_NUM_CHANNELS; i++) { |
| 2004 | channel = &channel_list[i]; |
| 2005 | device_destroy(tspp_class, channel->cdev.dev); |
| 2006 | cdev_del(&channel->cdev); |
| 2007 | } |
| 2008 | class_destroy(tspp_class); |
| 2009 | unregister_chrdev_region(0, TSPP_NUM_CHANNELS); |
| 2010 | |
| 2011 | /* now delete low level driver */ |
| 2012 | platform_driver_unregister(&msm_tspp_driver); |
| 2013 | } |
| 2014 | |
| 2015 | module_init(mod_init); |
| 2016 | module_exit(mod_exit); |
| 2017 | |
| 2018 | MODULE_DESCRIPTION("TSPP character device interface"); |
| 2019 | MODULE_LICENSE("GPL v2"); |