Venkat Gopalakrishnan | 4d6e9c9 | 2012-12-06 10:59:47 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved. |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [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 | /* |
| 14 | * SDIO-Downloader |
| 15 | * |
| 16 | * To be used with Qualcomm's SDIO-Client connected to this host. |
| 17 | */ |
| 18 | |
| 19 | /* INCLUDES */ |
| 20 | #include <linux/slab.h> |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/delay.h> |
| 23 | #include <linux/wakelock.h> |
Venkat Gopalakrishnan | 4d6e9c9 | 2012-12-06 10:59:47 -0800 | [diff] [blame] | 24 | #include <linux/workqueue.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 25 | #include <linux/mmc/card.h> |
| 26 | #include <linux/dma-mapping.h> |
| 27 | #include <mach/dma.h> |
| 28 | #include <linux/mmc/sdio_func.h> |
Alhad Purnapatre | d0d12e7 | 2011-10-26 14:04:42 -0700 | [diff] [blame] | 29 | #include "sdio_al_private.h" |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 30 | #include <linux/tty.h> |
| 31 | #include <linux/tty_flip.h> |
| 32 | #include <linux/kthread.h> |
| 33 | #include <linux/version.h> |
| 34 | #include <linux/errno.h> |
| 35 | #include <linux/debugfs.h> |
| 36 | |
| 37 | /* DEFINES AND MACROS */ |
| 38 | #define MAX_NUM_DEVICES 1 |
| 39 | #define TTY_SDIO_DEV "tty_sdio_0" |
| 40 | #define TTY_SDIO_DEV_TEST "tty_sdio_test_0" |
| 41 | #define SDIOC_MAILBOX_ADDRESS 0 |
| 42 | #define SDIO_DL_BLOCK_SIZE 512 |
| 43 | #define SDIO_DL_MAIN_THREAD_NAME "sdio_tty_main_thread" |
| 44 | #define SDIOC_DL_BUFF_ADDRESS 0 |
| 45 | #define SDIOC_UP_BUFF_ADDRESS 0x4 |
| 46 | #define SDIOC_DL_BUFF_SIZE_OFFSET 0x8 |
| 47 | #define SDIOC_UP_BUFF_SIZE_OFFSET 0xC |
| 48 | #define SDIOC_DL_WR_PTR 0x10 |
| 49 | #define SDIOC_DL_RD_PTR 0x14 |
| 50 | #define SDIOC_UL_WR_PTR 0x18 |
| 51 | #define SDIOC_UL_RD_PTR 0x1C |
| 52 | #define SDIOC_EXIT_PTR 0x20 |
| 53 | #define SDIOC_OP_MODE_PTR 0x24 |
| 54 | #define SDIOC_PTRS_OFFSET 0x10 |
| 55 | #define SDIOC_PTR_REGS_SIZE 0x10 |
| 56 | #define SDIOC_CFG_REGS_SIZE 0x10 |
| 57 | #define WRITE_RETRIES 0xFFFFFFFF |
| 58 | #define INPUT_SPEED 4800 |
| 59 | #define OUTPUT_SPEED 4800 |
| 60 | #define SDIOC_EXIT_CODE 0xDEADDEAD |
| 61 | #define SLEEP_MS 10 |
| 62 | #define PRINTING_GAP 200 |
| 63 | #define TIMER_DURATION 10 |
| 64 | #define PUSH_TIMER_DURATION 5000 |
| 65 | #define MULTIPLE_RATIO 1 |
| 66 | #define MS_IN_SEC 1000 |
| 67 | #define BITS_IN_BYTE 8 |
| 68 | #define BYTES_IN_KB 1024 |
| 69 | #define WRITE_TILL_END_RETRIES 5 |
| 70 | #define SDIO_DLD_NORMAL_MODE_NAME "SDIO DLD NORMAL MODE" |
| 71 | #define SDIO_DLD_BOOT_TEST_MODE_NAME "SDIO DLD BOOT TEST MODE" |
| 72 | #define SDIO_DLD_AMSS_TEST_MODE_NAME "SDIO DLD AMSS TEST MODE" |
| 73 | #define TEST_NAME_MAX_SIZE 30 |
| 74 | #define PUSH_STRING |
| 75 | #define SDIO_DLD_OUTGOING_BUFFER_SIZE (48*1024*MULTIPLE_RATIO) |
| 76 | |
| 77 | /* FORWARD DECLARATIONS */ |
| 78 | static int sdio_dld_open(struct tty_struct *tty, struct file *file); |
| 79 | static void sdio_dld_close(struct tty_struct *tty, struct file *file); |
| 80 | static int sdio_dld_write_callback(struct tty_struct *tty, |
| 81 | const unsigned char *buf, int count); |
| 82 | static int sdio_dld_write_room(struct tty_struct *tty); |
| 83 | static int sdio_dld_main_task(void *card); |
| 84 | static void sdio_dld_print_info(void); |
| 85 | #ifdef CONFIG_DEBUG_FS |
| 86 | static int sdio_dld_debug_info_open(struct inode *inode, struct file *file); |
| 87 | static ssize_t sdio_dld_debug_info_write(struct file *file, |
| 88 | const char __user *buf, size_t count, loff_t *ppos); |
| 89 | #endif |
| 90 | |
Venkat Gopalakrishnan | 4d6e9c9 | 2012-12-06 10:59:47 -0800 | [diff] [blame] | 91 | static void sdio_dld_tear_down(struct work_struct *work); |
| 92 | DECLARE_WORK(cleanup, sdio_dld_tear_down); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 93 | |
| 94 | /* STRUCTURES AND TYPES */ |
| 95 | enum sdio_dld_op_mode { |
| 96 | SDIO_DLD_NO_MODE = 0, |
| 97 | SDIO_DLD_NORMAL_MODE = 1, |
| 98 | SDIO_DLD_BOOT_TEST_MODE = 2, |
| 99 | SDIO_DLD_AMSS_TEST_MODE = 3, |
| 100 | SDIO_DLD_NUM_OF_MODES, |
| 101 | }; |
| 102 | |
| 103 | struct sdioc_reg_sequential_chunk_ptrs { |
| 104 | unsigned int dl_wr_ptr; |
| 105 | unsigned int dl_rd_ptr; |
| 106 | unsigned int up_wr_ptr; |
| 107 | unsigned int up_rd_ptr; |
| 108 | }; |
| 109 | |
| 110 | struct sdioc_reg_sequential_chunk_cfg { |
| 111 | unsigned int dl_buff_address; |
| 112 | unsigned int up_buff_address; |
| 113 | unsigned int dl_buff_size; |
| 114 | unsigned int ul_buff_size; |
| 115 | }; |
| 116 | |
| 117 | struct sdioc_reg { |
| 118 | unsigned int reg_val; |
| 119 | unsigned int reg_offset; |
| 120 | }; |
| 121 | |
| 122 | struct sdioc_reg_chunk { |
| 123 | struct sdioc_reg dl_buff_address; |
| 124 | struct sdioc_reg up_buff_address; |
| 125 | struct sdioc_reg dl_buff_size; |
| 126 | struct sdioc_reg ul_buff_size; |
| 127 | struct sdioc_reg dl_wr_ptr; |
| 128 | struct sdioc_reg dl_rd_ptr; |
| 129 | struct sdioc_reg up_wr_ptr; |
| 130 | struct sdioc_reg up_rd_ptr; |
| 131 | struct sdioc_reg good_to_exit_ptr; |
| 132 | }; |
| 133 | |
| 134 | struct sdio_data { |
| 135 | char *data; |
| 136 | int offset_read_p; |
| 137 | int offset_write_p; |
| 138 | int buffer_size; |
| 139 | int num_of_bytes_in_use; |
| 140 | }; |
| 141 | |
| 142 | struct sdio_dld_data { |
| 143 | struct sdioc_reg_chunk sdioc_reg; |
| 144 | struct sdio_data incoming_data; |
| 145 | struct sdio_data outgoing_data; |
| 146 | }; |
| 147 | |
| 148 | struct sdio_dld_wait_event { |
| 149 | wait_queue_head_t wait_event; |
| 150 | int wake_up_signal; |
| 151 | }; |
| 152 | |
| 153 | struct sdio_dld_task { |
| 154 | struct task_struct *dld_task; |
| 155 | const char *task_name; |
| 156 | struct sdio_dld_wait_event exit_wait; |
| 157 | atomic_t please_close; |
| 158 | }; |
| 159 | |
| 160 | #ifdef CONFIG_DEBUG_FS |
| 161 | struct sdio_dloader_debug { |
| 162 | struct dentry *sdio_dld_debug_root; |
| 163 | struct dentry *sdio_al_dloader; |
| 164 | }; |
| 165 | |
| 166 | const struct file_operations sdio_dld_debug_info_ops = { |
| 167 | .open = sdio_dld_debug_info_open, |
| 168 | .write = sdio_dld_debug_info_write, |
| 169 | }; |
| 170 | #endif |
| 171 | |
| 172 | struct sdio_downloader { |
| 173 | int sdioc_boot_func; |
| 174 | struct sdio_dld_wait_event write_callback_event; |
| 175 | struct sdio_dld_task dld_main_thread; |
| 176 | struct tty_driver *tty_drv; |
| 177 | struct tty_struct *tty_str; |
| 178 | struct sdio_dld_data sdio_dloader_data; |
| 179 | struct mmc_card *card; |
| 180 | int(*done_callback)(void); |
| 181 | struct sdio_dld_wait_event main_loop_event; |
| 182 | struct timer_list timer; |
| 183 | unsigned int poll_ms; |
| 184 | struct timer_list push_timer; |
| 185 | unsigned int push_timer_ms; |
| 186 | enum sdio_dld_op_mode op_mode; |
| 187 | char op_mode_name[TEST_NAME_MAX_SIZE]; |
| 188 | }; |
| 189 | |
| 190 | struct sdio_dld_global_info { |
| 191 | int global_bytes_write_toio; |
| 192 | int global_bytes_write_tty; |
| 193 | int global_bytes_read_fromio; |
| 194 | int global_bytes_push_tty; |
| 195 | u64 start_time; |
| 196 | u64 end_time; |
| 197 | u64 delta_jiffies; |
| 198 | unsigned int time_msec; |
| 199 | unsigned int throughput; |
| 200 | int cl_dl_wr_ptr; |
| 201 | int cl_dl_rd_ptr; |
| 202 | int cl_up_wr_ptr; |
| 203 | int cl_up_rd_ptr; |
| 204 | int host_read_ptr; |
| 205 | int host_write_ptr; |
| 206 | int cl_dl_buffer_size; |
| 207 | int cl_up_buffer_size; |
| 208 | int host_outgoing_buffer_size; |
| 209 | int cl_dl_buffer_address; |
| 210 | int cl_up_buffer_address; |
| 211 | }; |
| 212 | |
| 213 | static const struct tty_operations sdio_dloader_tty_ops = { |
| 214 | .open = sdio_dld_open, |
| 215 | .close = sdio_dld_close, |
| 216 | .write = sdio_dld_write_callback, |
| 217 | .write_room = sdio_dld_write_room, |
| 218 | }; |
| 219 | |
| 220 | /* GLOBAL VARIABLES */ |
| 221 | struct sdio_downloader *sdio_dld; |
| 222 | struct sdio_dld_global_info sdio_dld_info; |
| 223 | static char outgoing_data_buffer[SDIO_DLD_OUTGOING_BUFFER_SIZE]; |
| 224 | |
| 225 | static DEFINE_SPINLOCK(lock1); |
| 226 | static unsigned long lock_flags1; |
| 227 | static DEFINE_SPINLOCK(lock2); |
| 228 | static unsigned long lock_flags2; |
| 229 | |
Venkat Gopalakrishnan | 4d6e9c9 | 2012-12-06 10:59:47 -0800 | [diff] [blame] | 230 | static atomic_t sdio_dld_in_use = ATOMIC_INIT(0); |
| 231 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 232 | /* |
| 233 | * sdio_op_mode sets the operation mode of the sdio_dloader - |
| 234 | * it may be in NORMAL_MODE, BOOT_TEST_MODE or AMSS_TEST_MODE |
| 235 | */ |
| 236 | static int sdio_op_mode = (int)SDIO_DLD_NORMAL_MODE; |
| 237 | module_param(sdio_op_mode, int, 0); |
| 238 | |
| 239 | #ifdef CONFIG_DEBUG_FS |
| 240 | |
| 241 | struct sdio_dloader_debug sdio_dld_debug; |
| 242 | |
| 243 | #define ARR_SIZE 30000 |
| 244 | #define SDIO_DLD_DEBUGFS_INIT_VALUE 87654321 |
| 245 | #define SDIO_DLD_DEBUGFS_CASE_1_CODE 11111111 |
| 246 | #define SDIO_DLD_DEBUGFS_CASE_2_CODE 22222222 |
| 247 | #define SDIO_DLD_DEBUGFS_CASE_3_CODE 33333333 |
| 248 | #define SDIO_DLD_DEBUGFS_CASE_4_CODE 44444444 |
| 249 | #define SDIO_DLD_DEBUGFS_CASE_5_CODE 55555555 |
| 250 | #define SDIO_DLD_DEBUGFS_CASE_6_CODE 66666666 |
| 251 | #define SDIO_DLD_DEBUGFS_CASE_7_CODE 77777777 |
| 252 | #define SDIO_DLD_DEBUGFS_CASE_8_CODE 88888888 |
| 253 | #define SDIO_DLD_DEBUGFS_CASE_9_CODE 99999999 |
| 254 | #define SDIO_DLD_DEBUGFS_CASE_10_CODE 10101010 |
| 255 | #define SDIO_DLD_DEBUGFS_CASE_11_CODE 11001100 |
| 256 | #define SDIO_DLD_DEBUGFS_CASE_12_CODE 12001200 |
| 257 | #define SDIO_DLD_DEBUGFS_LOOP_WAIT 7 |
| 258 | #define SDIO_DLD_DEBUGFS_LOOP_WAKEUP 8 |
| 259 | #define SDIO_DLD_DEBUGFS_CB_WAIT 3 |
| 260 | #define SDIO_DLD_DEBUGFS_CB_WAKEUP 4 |
| 261 | |
| 262 | static int curr_index; |
| 263 | struct ptrs { |
| 264 | int h_w_ptr; |
| 265 | int h_r_ptr; |
| 266 | int c_u_w_ptr; |
| 267 | int c_u_r_ptr; |
| 268 | int code; |
| 269 | int h_has_to_send; |
| 270 | int c_has_to_receive; |
| 271 | int min_of; |
| 272 | int reserve2; |
| 273 | int tty_count; |
| 274 | int write_tty; |
| 275 | int write_toio; |
| 276 | int loop_wait_wake; |
| 277 | int cb_wait_wake; |
| 278 | int c_d_w_ptr; |
| 279 | int c_d_r_ptr; |
| 280 | int to_read; |
| 281 | int push_to_tty; |
| 282 | int global_tty_send; |
| 283 | int global_sdio_send; |
| 284 | int global_tty_received; |
| 285 | int global_sdio_received; |
| 286 | int reserve22; |
| 287 | int reserve23; |
| 288 | int reserve24; |
| 289 | int reserve25; |
| 290 | int reserve26; |
| 291 | int reserve27; |
| 292 | int reserve28; |
| 293 | int reserve29; |
| 294 | int reserve30; |
| 295 | int reserve31; |
| 296 | }; |
| 297 | |
| 298 | struct global_data { |
| 299 | int curr_i; |
| 300 | int duration_ms; |
| 301 | int global_bytes_sent; |
| 302 | int throughput_Mbs; |
| 303 | int host_outgoing_buffer_size_KB; |
| 304 | int client_up_buffer_size_KB; |
| 305 | int client_dl_buffer_size_KB; |
| 306 | int client_dl_buffer_address; |
| 307 | int client_up_buffer_address; |
| 308 | int global_bytes_received; |
| 309 | int global_bytes_pushed; |
| 310 | int reserve11; |
| 311 | int reserve12; |
| 312 | int reserve13; |
| 313 | int reserve14; |
| 314 | int reserve15; |
| 315 | int reserve16; |
| 316 | int reserve17; |
| 317 | int reserve18; |
| 318 | int reserve19; |
| 319 | int reserve20; |
| 320 | int reserve21; |
| 321 | int reserve22; |
| 322 | int reserve23; |
| 323 | int reserve24; |
| 324 | int reserve25; |
| 325 | int reserve26; |
| 326 | int reserve27; |
| 327 | int reserve28; |
| 328 | int reserve29; |
| 329 | int reserve30; |
| 330 | int reserve31; |
| 331 | struct ptrs ptr_array[ARR_SIZE]; |
| 332 | }; |
| 333 | |
| 334 | static struct global_data gd; |
| 335 | static struct debugfs_blob_wrapper blob; |
| 336 | static struct dentry *root; |
| 337 | static struct dentry *dld; |
| 338 | |
| 339 | struct debugfs_global { |
| 340 | int global_8k_has; |
| 341 | int global_9k_has; |
| 342 | int global_min; |
| 343 | int global_count; |
| 344 | int global_write_tty; |
| 345 | int global_write_toio; |
| 346 | int global_bytes_cb_tty; |
| 347 | int global_to_read; |
| 348 | int global_push_to_tty; |
| 349 | int global_tty_send; |
| 350 | int global_sdio_send; |
| 351 | int global_sdio_received; |
| 352 | int global_tty_push; |
| 353 | }; |
| 354 | |
| 355 | static struct debugfs_global debugfs_glob; |
| 356 | |
| 357 | static void update_standard_fields(int index) |
| 358 | { |
| 359 | |
| 360 | gd.ptr_array[index].global_tty_send = |
| 361 | sdio_dld_info.global_bytes_write_tty; |
| 362 | gd.ptr_array[index].global_sdio_send = |
| 363 | sdio_dld_info.global_bytes_write_toio; |
| 364 | gd.ptr_array[index].global_tty_received = |
| 365 | sdio_dld_info.global_bytes_push_tty; |
| 366 | gd.ptr_array[index].global_sdio_received = |
| 367 | sdio_dld_info.global_bytes_read_fromio; |
| 368 | } |
| 369 | |
| 370 | static void update_gd(int code) |
| 371 | { |
| 372 | struct sdioc_reg_chunk *reg_str = |
| 373 | &sdio_dld->sdio_dloader_data.sdioc_reg; |
| 374 | struct sdio_data *outgoing = &sdio_dld->sdio_dloader_data.outgoing_data; |
| 375 | int index = curr_index%ARR_SIZE; |
| 376 | |
| 377 | gd.curr_i = curr_index; |
| 378 | gd.duration_ms = 0; |
| 379 | gd.global_bytes_sent = 0; |
| 380 | gd.throughput_Mbs = 0; |
| 381 | gd.host_outgoing_buffer_size_KB = 0; |
| 382 | gd.client_up_buffer_size_KB = 0; |
| 383 | gd.client_dl_buffer_size_KB = 0; |
| 384 | gd.client_dl_buffer_address = 0; |
| 385 | gd.client_up_buffer_address = 0; |
| 386 | gd.global_bytes_received = 0; |
| 387 | gd.global_bytes_pushed = 0; |
| 388 | gd.reserve11 = 0; |
| 389 | gd.reserve12 = 0; |
| 390 | gd.reserve13 = 0; |
| 391 | gd.reserve14 = 0; |
| 392 | gd.reserve15 = 0; |
| 393 | gd.reserve16 = 0; |
| 394 | gd.reserve17 = 0; |
| 395 | gd.reserve18 = 0; |
| 396 | gd.reserve19 = 0; |
| 397 | gd.reserve20 = 0; |
| 398 | gd.reserve21 = 0; |
| 399 | gd.reserve22 = 0; |
| 400 | gd.reserve23 = 0; |
| 401 | gd.reserve24 = 0; |
| 402 | gd.reserve25 = 0; |
| 403 | gd.reserve26 = 0; |
| 404 | gd.reserve27 = 0; |
| 405 | gd.reserve28 = 0; |
| 406 | gd.reserve29 = 0; |
| 407 | gd.reserve30 = 0; |
| 408 | gd.reserve31 = 0; |
| 409 | |
| 410 | gd.ptr_array[index].h_w_ptr = SDIO_DLD_DEBUGFS_INIT_VALUE; /*0*/ |
| 411 | gd.ptr_array[index].h_r_ptr = SDIO_DLD_DEBUGFS_INIT_VALUE; /*1*/ |
| 412 | gd.ptr_array[index].c_u_w_ptr = SDIO_DLD_DEBUGFS_INIT_VALUE; /*2*/ |
| 413 | gd.ptr_array[index].c_u_r_ptr = SDIO_DLD_DEBUGFS_INIT_VALUE; /*3*/ |
| 414 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_INIT_VALUE; /*4*/ |
| 415 | gd.ptr_array[index].h_has_to_send = SDIO_DLD_DEBUGFS_INIT_VALUE;/*5*/ |
| 416 | gd.ptr_array[index].c_has_to_receive = |
| 417 | SDIO_DLD_DEBUGFS_INIT_VALUE; /*6*/ |
| 418 | gd.ptr_array[index].min_of = SDIO_DLD_DEBUGFS_INIT_VALUE; /*7*/ |
| 419 | gd.ptr_array[index].reserve2 = SDIO_DLD_DEBUGFS_INIT_VALUE; /*8*/ |
| 420 | gd.ptr_array[index].tty_count = SDIO_DLD_DEBUGFS_INIT_VALUE; /*9*/ |
| 421 | gd.ptr_array[index].write_tty = SDIO_DLD_DEBUGFS_INIT_VALUE; /*A*/ |
| 422 | gd.ptr_array[index].write_toio = SDIO_DLD_DEBUGFS_INIT_VALUE; /*B*/ |
| 423 | gd.ptr_array[index].loop_wait_wake = |
| 424 | SDIO_DLD_DEBUGFS_INIT_VALUE; /*C*/ |
| 425 | gd.ptr_array[index].cb_wait_wake = SDIO_DLD_DEBUGFS_INIT_VALUE; /*D*/ |
| 426 | gd.ptr_array[index].c_d_w_ptr = SDIO_DLD_DEBUGFS_INIT_VALUE; /*E*/ |
| 427 | gd.ptr_array[index].c_d_r_ptr = SDIO_DLD_DEBUGFS_INIT_VALUE; /*F*/ |
| 428 | gd.ptr_array[index].to_read = |
| 429 | SDIO_DLD_DEBUGFS_INIT_VALUE; /*0x10*/ |
| 430 | gd.ptr_array[index].push_to_tty = |
| 431 | SDIO_DLD_DEBUGFS_INIT_VALUE; /*0x11*/ |
| 432 | gd.ptr_array[index].global_tty_send = |
| 433 | SDIO_DLD_DEBUGFS_INIT_VALUE; /*0x12*/ |
| 434 | gd.ptr_array[index].global_sdio_send = |
| 435 | SDIO_DLD_DEBUGFS_INIT_VALUE; /*0x13*/ |
| 436 | gd.ptr_array[index].global_tty_received = |
| 437 | SDIO_DLD_DEBUGFS_INIT_VALUE; /*0x14*/ |
| 438 | gd.ptr_array[index].global_sdio_received = |
| 439 | SDIO_DLD_DEBUGFS_INIT_VALUE; /*0x15*/ |
| 440 | gd.ptr_array[index].reserve22 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 441 | gd.ptr_array[index].reserve23 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 442 | gd.ptr_array[index].reserve24 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 443 | gd.ptr_array[index].reserve25 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 444 | gd.ptr_array[index].reserve26 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 445 | gd.ptr_array[index].reserve27 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 446 | gd.ptr_array[index].reserve28 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 447 | gd.ptr_array[index].reserve29 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 448 | gd.ptr_array[index].reserve30 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 449 | gd.ptr_array[index].reserve31 = SDIO_DLD_DEBUGFS_INIT_VALUE; |
| 450 | |
| 451 | switch (code) { |
| 452 | case SDIO_DLD_DEBUGFS_CASE_1_CODE: |
| 453 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_1_CODE; |
| 454 | gd.ptr_array[index].h_w_ptr = outgoing->offset_write_p; |
| 455 | gd.ptr_array[index].h_r_ptr = outgoing->offset_read_p; |
| 456 | gd.ptr_array[index].c_u_w_ptr = reg_str->up_wr_ptr.reg_val; |
| 457 | gd.ptr_array[index].c_u_r_ptr = reg_str->up_rd_ptr.reg_val; |
| 458 | gd.ptr_array[index].c_d_w_ptr = reg_str->dl_wr_ptr.reg_val; |
| 459 | gd.ptr_array[index].c_d_r_ptr = reg_str->dl_rd_ptr.reg_val; |
| 460 | break; |
| 461 | |
| 462 | case SDIO_DLD_DEBUGFS_CASE_2_CODE: |
| 463 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_2_CODE; |
| 464 | gd.ptr_array[index].c_u_r_ptr = reg_str->up_rd_ptr.reg_val; |
| 465 | gd.ptr_array[index].c_u_w_ptr = reg_str->up_wr_ptr.reg_val; |
| 466 | gd.ptr_array[index].h_has_to_send = debugfs_glob.global_8k_has; |
| 467 | gd.ptr_array[index].c_has_to_receive = |
| 468 | debugfs_glob.global_9k_has; |
| 469 | gd.ptr_array[index].min_of = debugfs_glob.global_min; |
| 470 | break; |
| 471 | |
| 472 | case SDIO_DLD_DEBUGFS_CASE_3_CODE: |
| 473 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_3_CODE; |
| 474 | gd.ptr_array[index].h_w_ptr = outgoing->offset_write_p; |
| 475 | gd.ptr_array[index].h_r_ptr = outgoing->offset_read_p; |
| 476 | gd.ptr_array[index].write_tty = debugfs_glob.global_write_tty; |
| 477 | break; |
| 478 | |
| 479 | case SDIO_DLD_DEBUGFS_CASE_4_CODE: |
| 480 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_4_CODE; |
| 481 | gd.ptr_array[index].h_w_ptr = outgoing->offset_write_p; |
| 482 | gd.ptr_array[index].h_r_ptr = outgoing->offset_read_p; |
| 483 | gd.ptr_array[index].c_u_r_ptr = reg_str->up_rd_ptr.reg_val; |
| 484 | gd.ptr_array[index].c_u_w_ptr = reg_str->up_wr_ptr.reg_val; |
| 485 | gd.ptr_array[index].write_toio = |
| 486 | debugfs_glob.global_write_toio; |
| 487 | break; |
| 488 | |
| 489 | case SDIO_DLD_DEBUGFS_CASE_5_CODE: |
| 490 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_5_CODE; |
| 491 | gd.ptr_array[index].tty_count = debugfs_glob.global_count; |
| 492 | break; |
| 493 | |
| 494 | case SDIO_DLD_DEBUGFS_CASE_6_CODE: |
| 495 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_6_CODE; |
| 496 | gd.ptr_array[index].loop_wait_wake = 7; |
| 497 | break; |
| 498 | |
| 499 | case SDIO_DLD_DEBUGFS_CASE_7_CODE: |
| 500 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_7_CODE; |
| 501 | gd.ptr_array[index].loop_wait_wake = 8; |
| 502 | break; |
| 503 | |
| 504 | case SDIO_DLD_DEBUGFS_CASE_8_CODE: |
| 505 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_8_CODE; |
| 506 | gd.ptr_array[index].cb_wait_wake = 3; |
| 507 | break; |
| 508 | |
| 509 | case SDIO_DLD_DEBUGFS_CASE_9_CODE: |
| 510 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_9_CODE; |
| 511 | gd.ptr_array[index].cb_wait_wake = 4; |
| 512 | break; |
| 513 | |
| 514 | case SDIO_DLD_DEBUGFS_CASE_10_CODE: |
| 515 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_10_CODE; |
| 516 | gd.ptr_array[index].cb_wait_wake = |
| 517 | debugfs_glob.global_bytes_cb_tty; |
| 518 | break; |
| 519 | |
| 520 | case SDIO_DLD_DEBUGFS_CASE_11_CODE: |
| 521 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_11_CODE; |
| 522 | gd.ptr_array[index].to_read = debugfs_glob.global_to_read; |
| 523 | break; |
| 524 | |
| 525 | case SDIO_DLD_DEBUGFS_CASE_12_CODE: |
| 526 | gd.ptr_array[index].code = SDIO_DLD_DEBUGFS_CASE_12_CODE; |
| 527 | gd.ptr_array[index].push_to_tty = |
| 528 | debugfs_glob.global_push_to_tty; |
| 529 | break; |
| 530 | |
| 531 | default: |
| 532 | break; |
| 533 | } |
| 534 | update_standard_fields(index); |
| 535 | curr_index++; |
| 536 | } |
| 537 | |
Stephen Boyd | b503871 | 2012-04-25 11:40:56 -0700 | [diff] [blame] | 538 | static int bootloader_debugfs_init(void) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 539 | { |
| 540 | /* /sys/kernel/debug/bootloader there will be dld_arr file */ |
| 541 | root = debugfs_create_dir("bootloader", NULL); |
| 542 | if (!root) { |
| 543 | pr_info(MODULE_NAME ": %s - creating root dir " |
| 544 | "failed\n", __func__); |
| 545 | return -ENODEV; |
| 546 | } |
| 547 | |
| 548 | blob.data = &gd; |
| 549 | blob.size = sizeof(struct global_data); |
| 550 | dld = debugfs_create_blob("dld_arr", S_IRUGO, root, &blob); |
| 551 | if (!dld) { |
| 552 | debugfs_remove_recursive(root); |
| 553 | pr_err(MODULE_NAME ": %s, failed to create debugfs entry\n", |
| 554 | __func__); |
| 555 | return -ENODEV; |
| 556 | } |
| 557 | |
| 558 | return 0; |
| 559 | } |
| 560 | |
| 561 | /* |
| 562 | * for triggering the sdio_dld info use: |
| 563 | * echo 1 > /sys/kernel/debug/sdio_al_dld/sdio_al_dloader_info |
| 564 | */ |
| 565 | static int sdio_dld_debug_init(void) |
| 566 | { |
| 567 | sdio_dld_debug.sdio_dld_debug_root = |
| 568 | debugfs_create_dir("sdio_al_dld", NULL); |
| 569 | if (!sdio_dld_debug.sdio_dld_debug_root) { |
| 570 | pr_err(MODULE_NAME ": %s - Failed to create folder. " |
| 571 | "sdio_dld_debug_root is NULL", |
| 572 | __func__); |
| 573 | return -ENOENT; |
| 574 | } |
| 575 | |
| 576 | sdio_dld_debug.sdio_al_dloader = debugfs_create_file( |
| 577 | "sdio_al_dloader_info", |
| 578 | S_IRUGO | S_IWUGO, |
| 579 | sdio_dld_debug.sdio_dld_debug_root, |
| 580 | NULL, |
| 581 | &sdio_dld_debug_info_ops); |
| 582 | |
| 583 | if (!sdio_dld_debug.sdio_al_dloader) { |
| 584 | pr_err(MODULE_NAME ": %s - Failed to create a file. " |
| 585 | "sdio_al_dloader is NULL", |
| 586 | __func__); |
| 587 | debugfs_remove(sdio_dld_debug.sdio_dld_debug_root); |
| 588 | sdio_dld_debug.sdio_dld_debug_root = NULL; |
| 589 | return -ENOENT; |
| 590 | } |
| 591 | |
| 592 | return 0; |
| 593 | } |
| 594 | |
| 595 | static int sdio_dld_debug_info_open(struct inode *inode, struct file *file) |
| 596 | { |
| 597 | file->private_data = inode->i_private; |
| 598 | return 0; |
| 599 | } |
| 600 | |
| 601 | static ssize_t sdio_dld_debug_info_write(struct file *file, |
| 602 | const char __user *buf, size_t count, loff_t *ppos) |
| 603 | { |
| 604 | sdio_dld_print_info(); |
| 605 | return count; |
| 606 | } |
| 607 | #endif /* CONFIG_DEBUG_FS */ |
| 608 | |
| 609 | static void sdio_dld_print_info(void) |
| 610 | { |
| 611 | |
| 612 | sdio_dld_info.end_time = get_jiffies_64(); /* read the current time */ |
| 613 | sdio_dld_info.delta_jiffies = |
| 614 | sdio_dld_info.end_time - sdio_dld_info.start_time; |
| 615 | sdio_dld_info.time_msec = jiffies_to_msecs(sdio_dld_info.delta_jiffies); |
| 616 | |
| 617 | sdio_dld_info.throughput = sdio_dld_info.global_bytes_write_toio * |
| 618 | BITS_IN_BYTE / sdio_dld_info.time_msec; |
| 619 | sdio_dld_info.throughput /= MS_IN_SEC; |
| 620 | |
| 621 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - DURATION IN MSEC = %d\n", |
| 622 | __func__, |
| 623 | sdio_dld_info.time_msec); |
| 624 | |
| 625 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - BYTES WRITTEN ON SDIO BUS " |
| 626 | "= %d...BYTES SENT BY TTY = %d", |
| 627 | __func__, |
| 628 | sdio_dld_info.global_bytes_write_toio, |
| 629 | sdio_dld_info.global_bytes_write_tty); |
| 630 | |
| 631 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - BYTES RECEIVED ON SDIO BUS " |
| 632 | "= %d...BYTES SENT TO TTY = %d", |
| 633 | __func__, |
| 634 | sdio_dld_info.global_bytes_read_fromio, |
| 635 | sdio_dld_info.global_bytes_push_tty); |
| 636 | |
| 637 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - THROUGHPUT=%d Mbit/Sec", |
| 638 | __func__, sdio_dld_info.throughput); |
| 639 | |
| 640 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - CLIENT DL_BUFFER_SIZE=%d" |
| 641 | " KB..CLIENT UL_BUFFER=%d KB\n", |
| 642 | __func__, |
| 643 | sdio_dld_info.cl_dl_buffer_size/BYTES_IN_KB, |
| 644 | sdio_dld_info.cl_up_buffer_size/BYTES_IN_KB); |
| 645 | |
| 646 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - HOST OUTGOING BUFFER_SIZE" |
| 647 | "=%d KB", |
| 648 | __func__, |
| 649 | sdio_dld_info.host_outgoing_buffer_size/BYTES_IN_KB); |
| 650 | |
| 651 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - CLIENT DL BUFFER " |
| 652 | "ADDRESS = 0x%x", __func__, |
| 653 | sdio_dld_info.cl_dl_buffer_address); |
| 654 | |
| 655 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - CLIENT UP BUFFER " |
| 656 | "ADDRESS = 0x%x", |
| 657 | __func__, |
| 658 | sdio_dld_info.cl_up_buffer_address); |
| 659 | |
| 660 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - CLIENT - UPLINK BUFFER - " |
| 661 | "READ POINTER = %d", __func__, |
| 662 | sdio_dld_info.cl_up_rd_ptr); |
| 663 | |
| 664 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - CLIENT - UPLINK BUFFER - " |
| 665 | "WRITE POINTER = %d", __func__, |
| 666 | sdio_dld_info.cl_up_wr_ptr); |
| 667 | |
| 668 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - CLIENT - DOWNLINK BUFFER - " |
| 669 | "READ POINTER = %d", __func__, |
| 670 | sdio_dld_info.cl_dl_rd_ptr); |
| 671 | |
| 672 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - CLIENT - DOWNLINK BUFFER - " |
| 673 | "WRITE POINTER = %d", __func__, |
| 674 | sdio_dld_info.cl_dl_wr_ptr); |
| 675 | |
| 676 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - HOST - OUTGOING BUFFER - " |
| 677 | "READ POINTER = %d", __func__, |
| 678 | sdio_dld_info.host_read_ptr); |
| 679 | |
| 680 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - HOST - OUTGOING BUFFER - " |
| 681 | "WRITE POINTER = %d", __func__, |
| 682 | sdio_dld_info.host_write_ptr); |
| 683 | |
| 684 | pr_info(MODULE_NAME ": %s, FLASHLESS BOOT - END DEBUG INFO", __func__); |
| 685 | } |
| 686 | |
| 687 | /** |
| 688 | * sdio_dld_set_op_mode |
| 689 | * sets the op_mode and the name of the op_mode. Also, in case |
| 690 | * it's invalid mode sets op_mode to SDIO_DLD_NORMAL_MODE |
| 691 | * |
| 692 | * @op_mode: the operation mode to be set |
| 693 | * @return NONE |
| 694 | */ |
| 695 | static void sdio_dld_set_op_mode(enum sdio_dld_op_mode op_mode) |
| 696 | { |
| 697 | sdio_dld->op_mode = op_mode; |
| 698 | |
| 699 | switch (op_mode) { |
| 700 | case SDIO_DLD_NORMAL_MODE: |
| 701 | memcpy(sdio_dld->op_mode_name, |
| 702 | SDIO_DLD_NORMAL_MODE_NAME, TEST_NAME_MAX_SIZE); |
| 703 | break; |
| 704 | case SDIO_DLD_BOOT_TEST_MODE: |
| 705 | memcpy(sdio_dld->op_mode_name, |
| 706 | SDIO_DLD_BOOT_TEST_MODE_NAME, TEST_NAME_MAX_SIZE); |
| 707 | break; |
| 708 | case SDIO_DLD_AMSS_TEST_MODE: |
| 709 | memcpy(sdio_dld->op_mode_name, |
| 710 | SDIO_DLD_AMSS_TEST_MODE_NAME, TEST_NAME_MAX_SIZE); |
| 711 | break; |
| 712 | default: |
| 713 | sdio_dld->op_mode = SDIO_DLD_NORMAL_MODE; |
| 714 | pr_err(MODULE_NAME ": %s - Invalid Op_Mode = %d. Settings " |
| 715 | "Op_Mode to default - NORMAL_MODE\n", |
| 716 | __func__, op_mode); |
| 717 | memcpy(sdio_dld->op_mode_name, |
| 718 | SDIO_DLD_NORMAL_MODE_NAME, TEST_NAME_MAX_SIZE); |
| 719 | break; |
| 720 | } |
| 721 | |
| 722 | if (sdio_dld->op_mode_name != NULL) { |
| 723 | pr_info(MODULE_NAME ": %s - FLASHLESS BOOT - Op_Mode is set to " |
| 724 | "%s\n", __func__, sdio_dld->op_mode_name); |
| 725 | } else { |
| 726 | pr_info(MODULE_NAME ": %s - FLASHLESS BOOT - op_mode_name is " |
| 727 | "NULL\n", __func__); |
| 728 | } |
| 729 | } |
| 730 | |
| 731 | /** |
| 732 | * sdio_dld_allocate_local_buffers |
| 733 | * allocates local outgoing and incoming buffers and also sets |
| 734 | * threshold for outgoing data. |
| 735 | * |
| 736 | * @return 0 on success or negative value on error. |
| 737 | */ |
| 738 | static int sdio_dld_allocate_local_buffers(void) |
| 739 | { |
| 740 | struct sdioc_reg_chunk *reg_str = &sdio_dld->sdio_dloader_data. |
| 741 | sdioc_reg; |
| 742 | struct sdio_data *outgoing = &sdio_dld->sdio_dloader_data.outgoing_data; |
| 743 | struct sdio_data *incoming = &sdio_dld->sdio_dloader_data.incoming_data; |
| 744 | |
| 745 | incoming->data = |
| 746 | kzalloc(reg_str->dl_buff_size.reg_val, GFP_KERNEL); |
| 747 | |
| 748 | if (!incoming->data) { |
| 749 | pr_err(MODULE_NAME ": %s - param ""incoming->data"" is NULL. " |
| 750 | "Couldn't allocate incoming_data local buffer\n", |
| 751 | __func__); |
| 752 | return -ENOMEM; |
| 753 | } |
| 754 | |
| 755 | incoming->buffer_size = reg_str->dl_buff_size.reg_val; |
| 756 | |
| 757 | outgoing->data = outgoing_data_buffer; |
| 758 | |
| 759 | outgoing->buffer_size = SDIO_DLD_OUTGOING_BUFFER_SIZE; |
| 760 | |
| 761 | if (outgoing->buffer_size != |
| 762 | reg_str->ul_buff_size.reg_val*MULTIPLE_RATIO) { |
| 763 | pr_err(MODULE_NAME ": %s - HOST outgoing buffer size (%d bytes)" |
| 764 | "must be a multiple of ClIENT uplink buffer size (%d " |
| 765 | "bytes). HOST_SIZE == n*CLIENT_SIZE.(n=1,2,3...)\n", |
| 766 | __func__, |
| 767 | SDIO_DLD_OUTGOING_BUFFER_SIZE, |
| 768 | reg_str->ul_buff_size.reg_val); |
| 769 | kfree(incoming->data); |
| 770 | return -EINVAL; |
| 771 | } |
| 772 | |
| 773 | /* keep sdio_dld_info up to date */ |
| 774 | sdio_dld_info.host_outgoing_buffer_size = outgoing->buffer_size; |
| 775 | |
| 776 | return 0; |
| 777 | } |
| 778 | |
| 779 | /** |
| 780 | * sdio_dld_dealloc_local_buffers frees incoming and outgoing |
| 781 | * buffers. |
| 782 | * |
| 783 | * @return None. |
| 784 | */ |
| 785 | static void sdio_dld_dealloc_local_buffers(void) |
| 786 | { |
| 787 | kfree((void *)sdio_dld->sdio_dloader_data.incoming_data.data); |
| 788 | } |
| 789 | |
| 790 | /** |
| 791 | * mailbox_to_seq_chunk_read_cfg |
| 792 | * reads 4 configuration registers of mailbox from str_func, as |
| 793 | * a sequentail chunk in memory, and updates global struct |
| 794 | * accordingly. |
| 795 | * |
| 796 | * @str_func: a pointer to func struct. |
| 797 | * @return 0 on success or negative value on error. |
| 798 | */ |
| 799 | static int mailbox_to_seq_chunk_read_cfg(struct sdio_func *str_func) |
| 800 | { |
| 801 | struct sdioc_reg_sequential_chunk_cfg seq_chunk; |
| 802 | struct sdioc_reg_chunk *reg = &sdio_dld->sdio_dloader_data.sdioc_reg; |
| 803 | int status = 0; |
| 804 | |
| 805 | if (!str_func) { |
| 806 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 807 | __func__); |
| 808 | return -EINVAL; |
| 809 | } |
| 810 | |
| 811 | sdio_claim_host(str_func); |
| 812 | |
| 813 | /* reading SDIOC_MAILBOX_SIZE bytes from SDIOC_MAILBOX_ADDRESS */ |
| 814 | status = sdio_memcpy_fromio(str_func, |
| 815 | (void *)&seq_chunk, |
| 816 | SDIOC_MAILBOX_ADDRESS, |
| 817 | SDIOC_CFG_REGS_SIZE); |
| 818 | if (status) { |
| 819 | pr_err(MODULE_NAME ": %s - sdio_memcpy_fromio()" |
| 820 | " READING CFG MAILBOX failed. status=%d.\n", |
| 821 | __func__, status); |
| 822 | } |
| 823 | |
| 824 | sdio_release_host(str_func); |
| 825 | |
| 826 | reg->dl_buff_address.reg_val = seq_chunk.dl_buff_address; |
| 827 | reg->up_buff_address.reg_val = seq_chunk.up_buff_address; |
| 828 | reg->dl_buff_size.reg_val = seq_chunk.dl_buff_size; |
| 829 | reg->ul_buff_size.reg_val = seq_chunk.ul_buff_size; |
| 830 | |
| 831 | /* keep sdio_dld_info up to date */ |
| 832 | sdio_dld_info.cl_dl_buffer_size = seq_chunk.dl_buff_size; |
| 833 | sdio_dld_info.cl_up_buffer_size = seq_chunk.ul_buff_size; |
| 834 | sdio_dld_info.cl_dl_buffer_address = seq_chunk.dl_buff_address; |
| 835 | sdio_dld_info.cl_up_buffer_address = seq_chunk.up_buff_address; |
| 836 | |
| 837 | return status; |
| 838 | } |
| 839 | |
| 840 | /** |
| 841 | * mailbox_to_seq_chunk_read_ptrs |
| 842 | * reads 4 pointers registers of mailbox from str_func, as a |
| 843 | * sequentail chunk in memory, and updates global struct |
| 844 | * accordingly. |
| 845 | * |
| 846 | * @str_func: a pointer to func struct. |
| 847 | * @return 0 on success or negative value on error. |
| 848 | */ |
| 849 | static int mailbox_to_seq_chunk_read_ptrs(struct sdio_func *str_func) |
| 850 | { |
| 851 | struct sdioc_reg_sequential_chunk_ptrs seq_chunk; |
| 852 | struct sdioc_reg_chunk *reg = &sdio_dld->sdio_dloader_data.sdioc_reg; |
| 853 | int status = 0; |
| 854 | |
| 855 | struct sdio_data *outgoing = &sdio_dld->sdio_dloader_data.outgoing_data; |
| 856 | static int counter = 1; |
| 857 | static int offset_write_p; |
| 858 | static int offset_read_p; |
| 859 | static int up_wr_ptr; |
| 860 | static int up_rd_ptr; |
| 861 | static int dl_wr_ptr; |
| 862 | static int dl_rd_ptr; |
| 863 | |
| 864 | if (!str_func) { |
| 865 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 866 | __func__); |
| 867 | return -EINVAL; |
| 868 | } |
| 869 | |
| 870 | sdio_claim_host(str_func); |
| 871 | |
| 872 | /* reading SDIOC_MAILBOX_SIZE bytes from SDIOC_MAILBOX_ADDRESS */ |
| 873 | status = sdio_memcpy_fromio(str_func, |
| 874 | (void *)&seq_chunk, |
| 875 | SDIOC_PTRS_OFFSET, |
| 876 | SDIOC_PTR_REGS_SIZE); |
| 877 | if (status) { |
| 878 | pr_err(MODULE_NAME ": %s - sdio_memcpy_fromio()" |
| 879 | " READING PTRS MAILBOX failed. status=%d.\n", |
| 880 | __func__, status); |
| 881 | } |
| 882 | |
| 883 | sdio_release_host(str_func); |
| 884 | |
| 885 | reg->dl_rd_ptr.reg_val = seq_chunk.dl_rd_ptr; |
| 886 | reg->dl_wr_ptr.reg_val = seq_chunk.dl_wr_ptr; |
| 887 | reg->up_rd_ptr.reg_val = seq_chunk.up_rd_ptr; |
| 888 | reg->up_wr_ptr.reg_val = seq_chunk.up_wr_ptr; |
| 889 | |
| 890 | /* keeping sdio_dld_info up to date */ |
| 891 | sdio_dld_info.cl_dl_rd_ptr = seq_chunk.dl_rd_ptr; |
| 892 | sdio_dld_info.cl_dl_wr_ptr = seq_chunk.dl_wr_ptr; |
| 893 | sdio_dld_info.cl_up_rd_ptr = seq_chunk.up_rd_ptr; |
| 894 | sdio_dld_info.cl_up_wr_ptr = seq_chunk.up_wr_ptr; |
| 895 | |
| 896 | |
| 897 | /* DEBUG - if there was a change in value */ |
| 898 | if ((offset_write_p != outgoing->offset_write_p) || |
| 899 | (offset_read_p != outgoing->offset_read_p) || |
| 900 | (up_wr_ptr != reg->up_wr_ptr.reg_val) || |
| 901 | (up_rd_ptr != reg->up_rd_ptr.reg_val) || |
| 902 | (dl_wr_ptr != reg->dl_wr_ptr.reg_val) || |
| 903 | (dl_rd_ptr != reg->dl_rd_ptr.reg_val) || |
| 904 | (counter % PRINTING_GAP == 0)) { |
| 905 | counter = 1; |
| 906 | pr_debug(MODULE_NAME ": %s MailBox pointers: BLOCK_SIZE=%d, " |
| 907 | "hw=%d, hr=%d, cuw=%d, cur=%d, cdw=%d, cdr=%d\n", |
| 908 | __func__, |
| 909 | SDIO_DL_BLOCK_SIZE, |
| 910 | outgoing->offset_write_p, |
| 911 | outgoing->offset_read_p, |
| 912 | reg->up_wr_ptr.reg_val, |
| 913 | reg->up_rd_ptr.reg_val, |
| 914 | reg->dl_wr_ptr.reg_val, |
| 915 | reg->dl_rd_ptr.reg_val); |
| 916 | |
| 917 | #ifdef CONFIG_DEBUG_FS |
| 918 | update_gd(SDIO_DLD_DEBUGFS_CASE_1_CODE); |
| 919 | #endif |
| 920 | /* update static variables */ |
| 921 | offset_write_p = outgoing->offset_write_p; |
| 922 | offset_read_p = outgoing->offset_read_p; |
| 923 | up_wr_ptr = reg->up_wr_ptr.reg_val; |
| 924 | up_rd_ptr = reg->up_rd_ptr.reg_val; |
| 925 | dl_wr_ptr = reg->dl_wr_ptr.reg_val; |
| 926 | dl_rd_ptr = reg->dl_rd_ptr.reg_val; |
| 927 | } else { |
| 928 | counter++; |
| 929 | } |
| 930 | return status; |
| 931 | } |
| 932 | |
| 933 | /** |
| 934 | * sdio_dld_init_func |
| 935 | * enables the sdio func, and sets the func block size. |
| 936 | * |
| 937 | * @str_func: a pointer to func struct. |
| 938 | * @return 0 on success or negative value on error. |
| 939 | */ |
| 940 | static int sdio_dld_init_func(struct sdio_func *str_func) |
| 941 | { |
| 942 | int status1 = 0; |
| 943 | int status2 = 0; |
| 944 | |
| 945 | if (!str_func) { |
| 946 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 947 | __func__); |
| 948 | return -EINVAL; |
| 949 | } |
| 950 | |
| 951 | sdio_claim_host(str_func); |
| 952 | |
| 953 | status1 = sdio_enable_func(str_func); |
| 954 | if (status1) { |
| 955 | sdio_release_host(str_func); |
| 956 | pr_err(MODULE_NAME ": %s - sdio_enable_func() failed. " |
| 957 | "status=%d\n", __func__, status1); |
| 958 | return status1; |
| 959 | } |
| 960 | |
| 961 | status2 = sdio_set_block_size(str_func, SDIO_DL_BLOCK_SIZE); |
| 962 | if (status2) { |
| 963 | pr_err(MODULE_NAME ": %s - sdio_set_block_size() failed. " |
| 964 | "status=%d\n", __func__, status2); |
| 965 | status1 = sdio_disable_func(str_func); |
| 966 | if (status1) { |
| 967 | pr_err(MODULE_NAME ": %s - sdio_disable_func() " |
| 968 | "failed. status=%d\n", __func__, status1); |
| 969 | } |
| 970 | sdio_release_host(str_func); |
| 971 | return status2; |
| 972 | } |
| 973 | |
| 974 | sdio_release_host(str_func); |
| 975 | str_func->max_blksize = SDIO_DL_BLOCK_SIZE; |
| 976 | return 0; |
| 977 | } |
| 978 | |
| 979 | /** |
| 980 | * sdio_dld_allocate_buffers |
| 981 | * initializes the sdio func, and then reads the mailbox, in |
| 982 | * order to allocate incoming and outgoing buffers according to |
| 983 | * the size that was read from the mailbox. |
| 984 | * |
| 985 | * @str_func: a pointer to func struct. |
| 986 | * @return 0 on success or negative value on error. |
| 987 | */ |
| 988 | static int sdio_dld_allocate_buffers(struct sdio_func *str_func) |
| 989 | { |
| 990 | int status = 0; |
| 991 | |
| 992 | if (!str_func) { |
| 993 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 994 | __func__); |
| 995 | return -EINVAL; |
| 996 | } |
| 997 | |
| 998 | status = mailbox_to_seq_chunk_read_cfg(str_func); |
| 999 | if (status) { |
| 1000 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 1001 | "mailbox_to_seq_chunk_read_cfg(). status=%d\n", |
| 1002 | __func__, status); |
| 1003 | return status; |
| 1004 | } |
| 1005 | |
| 1006 | status = sdio_dld_allocate_local_buffers(); |
| 1007 | if (status) { |
| 1008 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 1009 | "sdio_dld_allocate_local_buffers(). status=%d\n", |
| 1010 | __func__, status); |
| 1011 | return status; |
| 1012 | } |
| 1013 | return 0; |
| 1014 | } |
| 1015 | |
| 1016 | /** |
| 1017 | * sdio_dld_create_thread |
| 1018 | * creates thread and wakes it up. |
| 1019 | * |
| 1020 | * @return 0 on success or negative value on error. |
| 1021 | */ |
| 1022 | static int sdio_dld_create_thread(void) |
| 1023 | { |
| 1024 | sdio_dld->dld_main_thread.task_name = SDIO_DL_MAIN_THREAD_NAME; |
| 1025 | |
| 1026 | sdio_dld->dld_main_thread.dld_task = |
| 1027 | kthread_create(sdio_dld_main_task, |
| 1028 | (void *)(sdio_dld->card), |
| 1029 | sdio_dld->dld_main_thread.task_name); |
| 1030 | |
| 1031 | if (IS_ERR(sdio_dld->dld_main_thread.dld_task)) { |
| 1032 | pr_err(MODULE_NAME ": %s - kthread_create() failed\n", |
| 1033 | __func__); |
| 1034 | return -ENOMEM; |
| 1035 | } |
| 1036 | wake_up_process(sdio_dld->dld_main_thread.dld_task); |
| 1037 | return 0; |
| 1038 | } |
| 1039 | |
| 1040 | /** |
| 1041 | * start_timer |
| 1042 | * sets the timer and starts. |
| 1043 | * |
| 1044 | * @timer: the timer to configure and add |
| 1045 | * @ms: the ms until it expires |
| 1046 | * @return None. |
| 1047 | */ |
| 1048 | static void start_timer(struct timer_list *timer, unsigned int ms) |
| 1049 | { |
| 1050 | if ((ms == 0) || (timer == NULL)) { |
| 1051 | pr_err(MODULE_NAME ": %s - invalid parameter", __func__); |
| 1052 | } else { |
| 1053 | timer->expires = jiffies + |
| 1054 | msecs_to_jiffies(ms); |
| 1055 | add_timer(timer); |
| 1056 | } |
| 1057 | } |
| 1058 | |
| 1059 | /** |
| 1060 | * sdio_dld_timer_handler |
| 1061 | * this is the timer handler. whenever it is invoked, it wakes |
| 1062 | * up the main loop task, and the write callback, and starts |
| 1063 | * the timer again. |
| 1064 | * |
| 1065 | * @data: a pointer to the tty device driver structure. |
| 1066 | * @return None. |
| 1067 | */ |
| 1068 | |
| 1069 | static void sdio_dld_timer_handler(unsigned long data) |
| 1070 | { |
| 1071 | pr_debug(MODULE_NAME " Timer Expired\n"); |
| 1072 | spin_lock_irqsave(&lock2, lock_flags2); |
| 1073 | if (sdio_dld->main_loop_event.wake_up_signal == 0) { |
| 1074 | sdio_dld->main_loop_event.wake_up_signal = 1; |
| 1075 | wake_up(&sdio_dld->main_loop_event.wait_event); |
| 1076 | } |
| 1077 | spin_unlock_irqrestore(&lock2, lock_flags2); |
| 1078 | |
| 1079 | sdio_dld->write_callback_event.wake_up_signal = 1; |
| 1080 | wake_up(&sdio_dld->write_callback_event.wait_event); |
| 1081 | |
| 1082 | start_timer(&sdio_dld->timer, sdio_dld->poll_ms); |
| 1083 | } |
| 1084 | |
| 1085 | /** |
| 1086 | * sdio_dld_push_timer_handler |
| 1087 | * this is a timer handler of the push_timer. |
| 1088 | * |
| 1089 | * @data: a pointer to the tty device driver structure. |
| 1090 | * @return None. |
| 1091 | */ |
| 1092 | static void sdio_dld_push_timer_handler(unsigned long data) |
| 1093 | { |
| 1094 | pr_err(MODULE_NAME " %s - Push Timer Expired... Trying to " |
| 1095 | "push data to TTY Core for over then %d ms.\n", |
| 1096 | __func__, sdio_dld->push_timer_ms); |
| 1097 | } |
| 1098 | |
| 1099 | /** |
| 1100 | * sdio_dld_open |
| 1101 | * this is the open callback of the tty driver. |
| 1102 | * it initializes the sdio func, allocates the buffers, and |
| 1103 | * creates the main thread. |
| 1104 | * |
| 1105 | * @tty: a pointer to the tty struct. |
| 1106 | * @file: file descriptor. |
| 1107 | * @return 0 on success or negative value on error. |
| 1108 | */ |
| 1109 | static int sdio_dld_open(struct tty_struct *tty, struct file *file) |
| 1110 | { |
| 1111 | int status = 0; |
| 1112 | int func_in_array = |
| 1113 | REAL_FUNC_TO_FUNC_IN_ARRAY(sdio_dld->sdioc_boot_func); |
| 1114 | struct sdio_func *str_func = sdio_dld->card->sdio_func[func_in_array]; |
| 1115 | |
Venkat Gopalakrishnan | 4d6e9c9 | 2012-12-06 10:59:47 -0800 | [diff] [blame] | 1116 | if (atomic_read(&sdio_dld_in_use) == 1) |
| 1117 | return -EBUSY; |
| 1118 | |
| 1119 | atomic_set(&sdio_dld_in_use, 1); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1120 | sdio_dld->tty_str = tty; |
| 1121 | sdio_dld->tty_str->low_latency = 1; |
| 1122 | sdio_dld->tty_str->icanon = 0; |
| 1123 | set_bit(TTY_NO_WRITE_SPLIT, &sdio_dld->tty_str->flags); |
| 1124 | |
| 1125 | pr_info(MODULE_NAME ": %s, TTY DEVICE FOR FLASHLESS BOOT OPENED\n", |
| 1126 | __func__); |
| 1127 | sdio_dld_info.start_time = get_jiffies_64(); /* read the current time */ |
| 1128 | |
| 1129 | if (!tty) { |
| 1130 | pr_err(MODULE_NAME ": %s - param ""tty"" is NULL.\n", |
| 1131 | __func__); |
| 1132 | return -EINVAL; |
| 1133 | } |
| 1134 | |
| 1135 | if (!str_func) { |
| 1136 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 1137 | __func__); |
| 1138 | return -EINVAL; |
| 1139 | } |
| 1140 | |
| 1141 | atomic_set(&sdio_dld->dld_main_thread.please_close, 0); |
| 1142 | sdio_dld->dld_main_thread.exit_wait.wake_up_signal = 0; |
| 1143 | |
| 1144 | status = sdio_dld_allocate_buffers(str_func); |
| 1145 | if (status) { |
| 1146 | pr_err(MODULE_NAME ": %s, failed in " |
| 1147 | "sdio_dld_allocate_buffers(). status=%d\n", |
| 1148 | __func__, status); |
| 1149 | return status; |
| 1150 | } |
| 1151 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1152 | /* init waiting event of the write callback */ |
| 1153 | init_waitqueue_head(&sdio_dld->write_callback_event.wait_event); |
| 1154 | |
| 1155 | /* init waiting event of the main loop */ |
| 1156 | init_waitqueue_head(&sdio_dld->main_loop_event.wait_event); |
| 1157 | |
| 1158 | /* configure and init the timer */ |
| 1159 | sdio_dld->poll_ms = TIMER_DURATION; |
| 1160 | init_timer(&sdio_dld->timer); |
| 1161 | sdio_dld->timer.data = (unsigned long) sdio_dld; |
| 1162 | sdio_dld->timer.function = sdio_dld_timer_handler; |
| 1163 | sdio_dld->timer.expires = jiffies + |
| 1164 | msecs_to_jiffies(sdio_dld->poll_ms); |
| 1165 | add_timer(&sdio_dld->timer); |
| 1166 | |
| 1167 | sdio_dld->push_timer_ms = PUSH_TIMER_DURATION; |
| 1168 | init_timer(&sdio_dld->push_timer); |
| 1169 | sdio_dld->push_timer.data = (unsigned long) sdio_dld; |
| 1170 | sdio_dld->push_timer.function = sdio_dld_push_timer_handler; |
| 1171 | |
Venkat Gopalakrishnan | 6f40725 | 2012-05-16 19:54:09 -0700 | [diff] [blame] | 1172 | status = sdio_dld_create_thread(); |
| 1173 | if (status) { |
| 1174 | del_timer_sync(&sdio_dld->timer); |
| 1175 | del_timer_sync(&sdio_dld->push_timer); |
| 1176 | sdio_dld_dealloc_local_buffers(); |
| 1177 | pr_err(MODULE_NAME ": %s, failed in sdio_dld_create_thread()." |
| 1178 | "status=%d\n", __func__, status); |
| 1179 | return status; |
| 1180 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1181 | return 0; |
| 1182 | } |
| 1183 | |
| 1184 | /** |
| 1185 | * sdio_dld_close |
| 1186 | * this is the close callback of the tty driver. it requests |
| 1187 | * the main thread to exit, and waits for notification of it. |
| 1188 | * it also de-allocates the buffers, and unregisters the tty |
| 1189 | * driver and device. |
| 1190 | * |
| 1191 | * @tty: a pointer to the tty struct. |
| 1192 | * @file: file descriptor. |
| 1193 | * @return None. |
| 1194 | */ |
| 1195 | static void sdio_dld_close(struct tty_struct *tty, struct file *file) |
| 1196 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1197 | struct sdioc_reg_chunk *reg = &sdio_dld->sdio_dloader_data.sdioc_reg; |
| 1198 | |
| 1199 | /* informing the SDIOC that it can exit boot phase */ |
| 1200 | sdio_dld->sdio_dloader_data.sdioc_reg.good_to_exit_ptr.reg_val = |
| 1201 | SDIOC_EXIT_CODE; |
| 1202 | |
| 1203 | atomic_set(&sdio_dld->dld_main_thread.please_close, 1); |
| 1204 | |
| 1205 | pr_debug(MODULE_NAME ": %s - CLOSING - WAITING...", __func__); |
| 1206 | |
| 1207 | wait_event(sdio_dld->dld_main_thread.exit_wait.wait_event, |
| 1208 | sdio_dld->dld_main_thread.exit_wait.wake_up_signal); |
| 1209 | pr_debug(MODULE_NAME ": %s - CLOSING - WOKE UP...", __func__); |
| 1210 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1211 | #ifdef CONFIG_DEBUG_FS |
| 1212 | gd.curr_i = curr_index; |
| 1213 | gd.duration_ms = sdio_dld_info.time_msec; |
| 1214 | gd.global_bytes_sent = sdio_dld_info.global_bytes_write_toio; |
| 1215 | gd.global_bytes_received = 0; |
| 1216 | gd.throughput_Mbs = sdio_dld_info.throughput; |
| 1217 | gd.host_outgoing_buffer_size_KB = sdio_dld->sdio_dloader_data. |
| 1218 | outgoing_data.buffer_size/BYTES_IN_KB; |
| 1219 | gd.client_up_buffer_size_KB = reg->ul_buff_size.reg_val/BYTES_IN_KB; |
| 1220 | gd.client_dl_buffer_size_KB = reg->dl_buff_size.reg_val/BYTES_IN_KB; |
| 1221 | gd.client_dl_buffer_address = reg->dl_buff_address.reg_val; |
| 1222 | gd.client_up_buffer_address = reg->up_buff_address.reg_val; |
| 1223 | gd.global_bytes_received = sdio_dld_info.global_bytes_read_fromio; |
| 1224 | gd.global_bytes_pushed = sdio_dld_info.global_bytes_push_tty; |
| 1225 | #endif |
| 1226 | |
| 1227 | /* saving register values before deallocating sdio_dld |
| 1228 | in order to use it in sdio_dld_print_info() through shell command */ |
| 1229 | sdio_dld_info.cl_dl_rd_ptr = reg->dl_rd_ptr.reg_val; |
| 1230 | sdio_dld_info.cl_dl_wr_ptr = reg->dl_wr_ptr.reg_val; |
| 1231 | sdio_dld_info.cl_up_rd_ptr = reg->up_rd_ptr.reg_val; |
| 1232 | sdio_dld_info.cl_up_wr_ptr = reg->up_wr_ptr.reg_val; |
| 1233 | |
| 1234 | sdio_dld_info.host_read_ptr = |
| 1235 | sdio_dld->sdio_dloader_data.outgoing_data.offset_read_p; |
| 1236 | |
| 1237 | sdio_dld_info.host_write_ptr = |
| 1238 | sdio_dld->sdio_dloader_data.outgoing_data.offset_write_p; |
| 1239 | |
| 1240 | sdio_dld_info.cl_dl_buffer_size = |
| 1241 | sdio_dld->sdio_dloader_data.sdioc_reg.dl_buff_size.reg_val; |
| 1242 | |
| 1243 | sdio_dld_info.cl_up_buffer_size = |
| 1244 | sdio_dld->sdio_dloader_data.sdioc_reg.ul_buff_size.reg_val; |
| 1245 | |
| 1246 | sdio_dld_info.host_outgoing_buffer_size = |
| 1247 | sdio_dld->sdio_dloader_data.outgoing_data.buffer_size; |
| 1248 | |
| 1249 | sdio_dld_info.cl_dl_buffer_address = |
| 1250 | sdio_dld->sdio_dloader_data.sdioc_reg.dl_buff_address.reg_val; |
| 1251 | |
| 1252 | sdio_dld_info.cl_up_buffer_address = |
| 1253 | sdio_dld->sdio_dloader_data.sdioc_reg.up_buff_address.reg_val; |
| 1254 | |
| 1255 | sdio_dld_print_info(); |
| 1256 | |
| 1257 | if (sdio_dld->done_callback) |
| 1258 | sdio_dld->done_callback(); |
| 1259 | |
Venkat Gopalakrishnan | 4d6e9c9 | 2012-12-06 10:59:47 -0800 | [diff] [blame] | 1260 | schedule_work(&cleanup); |
| 1261 | pr_info(MODULE_NAME ": %s - Bootloader done, returning...", __func__); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1262 | } |
| 1263 | |
| 1264 | /** |
| 1265 | * writing_size_to_buf |
| 1266 | * writes from src buffer into dest buffer. if dest buffer |
| 1267 | * reaches its end, rollover happens. |
| 1268 | * |
| 1269 | * @dest: destination buffer. |
| 1270 | * @src: source buffer. |
| 1271 | * @dest_wr_ptr: writing pointer in destination buffer. |
| 1272 | * @dest_size: destination buffer size. |
| 1273 | * @dest_rd_ptr: reading pointer in destination buffer. |
| 1274 | * @size_to_write: size of bytes to write. |
| 1275 | * @return -how many bytes actually written to destination |
| 1276 | * buffer. |
| 1277 | * |
| 1278 | * ONLY destination buffer is treated as cyclic buffer. |
| 1279 | */ |
| 1280 | static int writing_size_to_buf(char *dest, |
| 1281 | const unsigned char *src, |
| 1282 | int *dest_wr_ptr, |
| 1283 | int dest_size, |
| 1284 | int dest_rd_ptr, |
| 1285 | int size_to_write) |
| 1286 | { |
| 1287 | int actually_written = 0; |
| 1288 | int size_to_add = *dest_wr_ptr; |
| 1289 | |
| 1290 | if (!dest) { |
| 1291 | pr_err(MODULE_NAME ": %s - param ""dest"" is NULL.\n", |
| 1292 | __func__); |
| 1293 | return -EINVAL; |
| 1294 | } |
| 1295 | |
| 1296 | if (!src) { |
| 1297 | pr_err(MODULE_NAME ": %s - param ""src"" is NULL.\n", |
| 1298 | __func__); |
| 1299 | return -EINVAL; |
| 1300 | } |
| 1301 | |
| 1302 | if (!dest_wr_ptr) { |
| 1303 | pr_err(MODULE_NAME ": %s - param ""dest_wr_ptr"" is NULL.\n", |
| 1304 | __func__); |
| 1305 | return -EINVAL; |
| 1306 | } |
| 1307 | |
| 1308 | for (actually_written = 0 ; |
| 1309 | actually_written < size_to_write ; ++actually_written) { |
| 1310 | /* checking if buffer is full */ |
| 1311 | if (((size_to_add + 1) % dest_size) == dest_rd_ptr) { |
| 1312 | *dest_wr_ptr = size_to_add; |
| 1313 | return actually_written; |
| 1314 | } |
| 1315 | |
| 1316 | dest[size_to_add] = src[actually_written]; |
| 1317 | size_to_add = (size_to_add+1)%dest_size; |
| 1318 | } |
| 1319 | |
| 1320 | *dest_wr_ptr = size_to_add; |
| 1321 | |
| 1322 | return actually_written; |
| 1323 | } |
| 1324 | |
| 1325 | /** |
| 1326 | * sdioc_bytes_till_end_of_buffer - this routine calculates how many bytes are |
| 1327 | * empty/in use. if calculation requires rap around - it will ignore the rap |
| 1328 | * around and will do the calculation untill the end of the buffer |
| 1329 | * |
| 1330 | * @write_ptr: writing pointer. |
| 1331 | * @read_ptr: reading pointer. |
| 1332 | * @total_size: buffer size. |
| 1333 | * @free_bytes: return value-how many free bytes. |
| 1334 | * @bytes_in_use: return value-how many bytes in use. |
| 1335 | * @return 0 on success or negative value on error. |
| 1336 | * |
| 1337 | * buffer is treated as a cyclic buffer. |
| 1338 | */ |
| 1339 | static int sdioc_bytes_till_end_of_buffer(int write_ptr, |
| 1340 | int read_ptr, |
| 1341 | int total_size, |
| 1342 | int *free_bytes, |
| 1343 | int *bytes_in_use) |
| 1344 | { |
| 1345 | if (!free_bytes) { |
| 1346 | pr_err(MODULE_NAME ": %s - param ""free_bytes"" is NULL.\n", |
| 1347 | __func__); |
| 1348 | return -EINVAL; |
| 1349 | } |
| 1350 | |
| 1351 | if (!bytes_in_use) { |
| 1352 | pr_err(MODULE_NAME ": %s - param ""bytes_in_use"" is NULL.\n", |
| 1353 | __func__); |
| 1354 | return -EINVAL; |
| 1355 | } |
| 1356 | |
| 1357 | if (write_ptr >= read_ptr) { |
| 1358 | if (read_ptr == 0) |
| 1359 | *free_bytes = total_size - write_ptr - 1; |
| 1360 | else |
| 1361 | *free_bytes = total_size - write_ptr; |
| 1362 | *bytes_in_use = write_ptr - read_ptr; |
| 1363 | } else { |
| 1364 | *bytes_in_use = total_size - read_ptr; |
| 1365 | *free_bytes = read_ptr - write_ptr - 1; |
| 1366 | } |
| 1367 | |
| 1368 | return 0; |
| 1369 | } |
| 1370 | |
| 1371 | /** |
| 1372 | * sdioc_bytes_free_in_buffer |
| 1373 | * this routine calculates how many bytes are free in a buffer |
| 1374 | * and how many are in use, according to its reading and |
| 1375 | * writing pointer offsets. |
| 1376 | * |
| 1377 | * @write_ptr: writing pointer. |
| 1378 | * @read_ptr: reading pointer. |
| 1379 | * @total_size: buffer size. |
| 1380 | * @free_bytes: return value-how many free bytes in buffer. |
| 1381 | * @bytes_in_use: return value-how many bytes in use in buffer. |
| 1382 | * @return 0 on success or negative value on error. |
| 1383 | * |
| 1384 | * buffer is treated as a cyclic buffer. |
| 1385 | */ |
| 1386 | static int sdioc_bytes_free_in_buffer(int write_ptr, |
| 1387 | int read_ptr, |
| 1388 | int total_size, |
| 1389 | int *free_bytes, |
| 1390 | int *bytes_in_use) |
| 1391 | { |
| 1392 | if (!free_bytes) { |
| 1393 | pr_err(MODULE_NAME ": %s - param ""free_bytes"" is NULL.\n", |
| 1394 | __func__); |
| 1395 | return -EINVAL; |
| 1396 | } |
| 1397 | |
| 1398 | if (!bytes_in_use) { |
| 1399 | pr_err(MODULE_NAME ": %s - param ""bytes_in_use"" is NULL.\n", |
| 1400 | __func__); |
| 1401 | return -EINVAL; |
| 1402 | } |
| 1403 | |
| 1404 | /* if pointers equel - buffers are empty. nothing to read/write */ |
| 1405 | |
| 1406 | if (write_ptr >= read_ptr) |
| 1407 | *bytes_in_use = write_ptr - read_ptr; |
| 1408 | else |
| 1409 | *bytes_in_use = total_size - (read_ptr - write_ptr); |
| 1410 | |
| 1411 | *free_bytes = total_size - *bytes_in_use - 1; |
| 1412 | |
| 1413 | return 0; |
| 1414 | } |
| 1415 | |
| 1416 | /* |
| 1417 | * sdio_dld_write_room |
| 1418 | * |
| 1419 | * This is the write_room function of the tty driver. |
| 1420 | * |
| 1421 | * @tty: pointer to tty struct. |
| 1422 | * @return free bytes for write. |
| 1423 | * |
| 1424 | */ |
| 1425 | static int sdio_dld_write_room(struct tty_struct *tty) |
| 1426 | { |
| 1427 | return sdio_dld->sdio_dloader_data.outgoing_data.buffer_size; |
| 1428 | } |
| 1429 | |
| 1430 | /** |
| 1431 | * sdio_dld_write_callback |
| 1432 | * this is the write callback of the tty driver. |
| 1433 | * |
| 1434 | * @tty: pointer to tty struct. |
| 1435 | * @buf: buffer to write from. |
| 1436 | * @count: number of bytes to write. |
| 1437 | * @return bytes written or negative value on error. |
| 1438 | * |
| 1439 | * if destination buffer has not enough room for the incoming |
| 1440 | * data, returns an error. |
| 1441 | */ |
| 1442 | static int sdio_dld_write_callback(struct tty_struct *tty, |
| 1443 | const unsigned char *buf, int count) |
| 1444 | { |
| 1445 | struct sdio_data *outgoing = &sdio_dld->sdio_dloader_data.outgoing_data; |
| 1446 | int dst_free_bytes = 0; |
| 1447 | int dummy = 0; |
| 1448 | int status = 0; |
| 1449 | int bytes_written = 0; |
| 1450 | int total_written = 0; |
| 1451 | static int write_retry; |
| 1452 | int pending_to_write = count; |
| 1453 | |
| 1454 | #ifdef CONFIG_DEBUG_FS |
| 1455 | debugfs_glob.global_count = count; |
| 1456 | update_gd(SDIO_DLD_DEBUGFS_CASE_5_CODE); |
| 1457 | #endif |
| 1458 | |
| 1459 | pr_debug(MODULE_NAME ": %s - WRITING CALLBACK CALLED WITH %d bytes\n", |
| 1460 | __func__, count); |
| 1461 | |
| 1462 | if (!outgoing->data) { |
| 1463 | pr_err(MODULE_NAME ": %s - param ""outgoing->data"" is NULL.\n", |
| 1464 | __func__); |
| 1465 | return -EINVAL; |
| 1466 | } |
| 1467 | |
| 1468 | pr_debug(MODULE_NAME ": %s - WRITE CALLBACK size to write to outgoing" |
| 1469 | " buffer %d\n", __func__, count); |
| 1470 | |
| 1471 | /* as long as there is something to write to outgoing buffer */ |
| 1472 | do { |
| 1473 | int bytes_to_write = 0; |
| 1474 | status = sdioc_bytes_free_in_buffer( |
| 1475 | outgoing->offset_write_p, |
| 1476 | outgoing->offset_read_p, |
| 1477 | outgoing->buffer_size, |
| 1478 | &dst_free_bytes, |
| 1479 | &dummy); |
| 1480 | |
| 1481 | if (status) { |
| 1482 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 1483 | "sdioc_bytes_free_in_buffer(). status=%d\n", |
| 1484 | __func__, status); |
| 1485 | return status; |
| 1486 | } |
| 1487 | |
| 1488 | /* |
| 1489 | * if there is free room in outgoing buffer |
| 1490 | * lock mutex and request trigger notification from the main |
| 1491 | * task. unlock mutex, and wait for sinal |
| 1492 | */ |
| 1493 | if (dst_free_bytes > 0) { |
| 1494 | write_retry = 0; |
| 1495 | /* |
| 1496 | * if there is more data to write to outgoing buffer |
| 1497 | * than it can receive, wait for signal from main task |
| 1498 | */ |
| 1499 | if (pending_to_write > dst_free_bytes) { |
| 1500 | |
| 1501 | /* sampling updated dst_free_bytes */ |
| 1502 | status = sdioc_bytes_free_in_buffer( |
| 1503 | outgoing->offset_write_p, |
| 1504 | outgoing->offset_read_p, |
| 1505 | outgoing->buffer_size, |
| 1506 | &dst_free_bytes, |
| 1507 | &dummy); |
| 1508 | |
| 1509 | if (status) { |
| 1510 | pr_err(MODULE_NAME ": %s - Failure in " |
| 1511 | "Function " |
| 1512 | "sdioc_bytes_free_in_buffer(). " |
| 1513 | "status=%d\n", __func__, status); |
| 1514 | return status; |
| 1515 | } |
| 1516 | } |
| 1517 | |
| 1518 | bytes_to_write = min(pending_to_write, dst_free_bytes); |
| 1519 | bytes_written = |
| 1520 | writing_size_to_buf(outgoing->data, |
| 1521 | buf+total_written, |
| 1522 | &outgoing->offset_write_p, |
| 1523 | outgoing->buffer_size, |
| 1524 | outgoing->offset_read_p, |
| 1525 | bytes_to_write); |
| 1526 | |
| 1527 | /* keeping sdio_dld_info up to date */ |
| 1528 | sdio_dld_info.host_write_ptr = |
| 1529 | sdio_dld->sdio_dloader_data. |
| 1530 | outgoing_data.offset_write_p; |
| 1531 | |
| 1532 | #ifdef CONFIG_DEBUG_FS |
| 1533 | debugfs_glob.global_write_tty = bytes_written; |
| 1534 | update_gd(SDIO_DLD_DEBUGFS_CASE_3_CODE); |
| 1535 | #endif |
| 1536 | sdio_dld_info.global_bytes_write_tty += bytes_written; |
| 1537 | |
| 1538 | spin_lock_irqsave(&lock2, lock_flags2); |
| 1539 | if (sdio_dld->main_loop_event.wake_up_signal == 0) { |
| 1540 | sdio_dld->main_loop_event.wake_up_signal = 1; |
| 1541 | wake_up(&sdio_dld->main_loop_event.wait_event); |
| 1542 | } |
| 1543 | spin_unlock_irqrestore(&lock2, lock_flags2); |
| 1544 | |
| 1545 | /* |
| 1546 | * although outgoing buffer has enough room, writing |
| 1547 | * failed |
| 1548 | */ |
| 1549 | if (bytes_written != bytes_to_write) { |
| 1550 | pr_err(MODULE_NAME ": %s - couldn't write " |
| 1551 | "%d bytes to " "outgoing buffer." |
| 1552 | "bytes_written=%d\n", |
| 1553 | __func__, bytes_to_write, |
| 1554 | bytes_written); |
| 1555 | return -EIO; |
| 1556 | } |
| 1557 | |
| 1558 | total_written += bytes_written; |
| 1559 | pending_to_write -= bytes_written; |
| 1560 | outgoing->num_of_bytes_in_use += bytes_written; |
| 1561 | |
| 1562 | pr_debug(MODULE_NAME ": %s - WRITE CHUNK to outgoing " |
| 1563 | "buffer. pending_to_write=%d, " |
| 1564 | "outgoing_free_bytes=%d, " |
| 1565 | "bytes_written=%d\n", |
| 1566 | __func__, |
| 1567 | pending_to_write, |
| 1568 | dst_free_bytes, |
| 1569 | bytes_written); |
| 1570 | |
| 1571 | } else { |
| 1572 | write_retry++; |
| 1573 | |
| 1574 | pr_debug(MODULE_NAME ": %s - WRITE CALLBACK - NO ROOM." |
| 1575 | " pending_to_write=%d, write_retry=%d\n", |
| 1576 | __func__, |
| 1577 | pending_to_write, |
| 1578 | write_retry); |
| 1579 | |
| 1580 | spin_lock_irqsave(&lock1, lock_flags1); |
| 1581 | sdio_dld->write_callback_event.wake_up_signal = 0; |
| 1582 | spin_unlock_irqrestore(&lock1, lock_flags1); |
| 1583 | |
| 1584 | pr_debug(MODULE_NAME ": %s - WRITE CALLBACK - " |
| 1585 | "WAITING...", __func__); |
| 1586 | #ifdef CONFIG_DEBUG_FS |
| 1587 | update_gd(SDIO_DLD_DEBUGFS_CASE_8_CODE); |
| 1588 | #endif |
| 1589 | wait_event(sdio_dld->write_callback_event.wait_event, |
| 1590 | sdio_dld->write_callback_event. |
| 1591 | wake_up_signal); |
| 1592 | #ifdef CONFIG_DEBUG_FS |
| 1593 | update_gd(SDIO_DLD_DEBUGFS_CASE_9_CODE); |
| 1594 | #endif |
| 1595 | pr_debug(MODULE_NAME ": %s - WRITE CALLBACK - " |
| 1596 | "WOKE UP...", __func__); |
| 1597 | } |
| 1598 | } while (pending_to_write > 0 && write_retry < WRITE_RETRIES); |
| 1599 | |
| 1600 | if (pending_to_write > 0) { |
| 1601 | |
| 1602 | pr_err(MODULE_NAME ": %s - WRITE CALLBACK - pending data is " |
| 1603 | "%d out of %d > 0. total written in this " |
| 1604 | "callback = %d\n", |
| 1605 | __func__, pending_to_write, count, total_written); |
| 1606 | } |
| 1607 | |
| 1608 | if (write_retry == WRITE_RETRIES) { |
| 1609 | pr_err(MODULE_NAME ": %s, write_retry=%d= max\n", |
| 1610 | __func__, write_retry); |
| 1611 | } |
| 1612 | |
| 1613 | #ifdef CONFIG_DEBUG_FS |
| 1614 | debugfs_glob.global_bytes_cb_tty = total_written; |
| 1615 | update_gd(SDIO_DLD_DEBUGFS_CASE_10_CODE); |
| 1616 | #endif |
| 1617 | |
| 1618 | return total_written; |
| 1619 | } |
| 1620 | |
| 1621 | /** |
| 1622 | * sdio_memcpy_fromio_wrapper - |
| 1623 | * reads from sdioc, and updats the sdioc registers according |
| 1624 | * to how many bytes were actually read. |
| 1625 | * |
| 1626 | * @str_func: a pointer to func struct. |
| 1627 | * @client_rd_ptr: sdioc value of downlink read ptr. |
| 1628 | * @client_wr_ptr: sdioc value of downlink write ptr. |
| 1629 | * @buffer_to_store: buffer to store incoming data. |
| 1630 | * @address_to_read: address to start reading from in sdioc. |
| 1631 | * @size_to_read: size of bytes to read. |
| 1632 | * @client_buffer_size: sdioc downlink buffer size. |
| 1633 | * @return 0 on success or negative value on error. |
| 1634 | */ |
| 1635 | static int sdio_memcpy_fromio_wrapper(struct sdio_func *str_func, |
| 1636 | unsigned int client_rd_ptr, |
| 1637 | unsigned int client_wr_ptr, |
| 1638 | void *buffer_to_store, |
| 1639 | unsigned int address_to_read_from, |
| 1640 | int size_to_read, |
| 1641 | int client_buffer_size) |
| 1642 | { |
| 1643 | int status = 0; |
| 1644 | struct sdioc_reg_chunk *reg_str = |
| 1645 | &sdio_dld->sdio_dloader_data.sdioc_reg; |
| 1646 | |
| 1647 | if (!str_func) { |
| 1648 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 1649 | __func__); |
| 1650 | return -EINVAL; |
| 1651 | } |
| 1652 | |
| 1653 | if (!buffer_to_store) { |
| 1654 | pr_err(MODULE_NAME ": %s - param ""buffer_to_store"" is " |
| 1655 | "NULL.\n", |
| 1656 | __func__); |
| 1657 | return -EINVAL; |
| 1658 | } |
| 1659 | |
| 1660 | if (size_to_read < 0) { |
| 1661 | pr_err(MODULE_NAME ": %s - invalid size to read=%d\n", |
| 1662 | __func__, size_to_read); |
| 1663 | return -EINVAL; |
| 1664 | } |
| 1665 | |
| 1666 | sdio_claim_host(str_func); |
| 1667 | |
| 1668 | pr_debug(MODULE_NAME ": %s, READING DATA - from add %d, " |
| 1669 | "size_to_read=%d\n", |
| 1670 | __func__, address_to_read_from, size_to_read); |
| 1671 | |
| 1672 | status = sdio_memcpy_fromio(str_func, |
| 1673 | (void *)buffer_to_store, |
| 1674 | address_to_read_from, |
| 1675 | size_to_read); |
| 1676 | if (status) { |
| 1677 | pr_err(MODULE_NAME ": %s - sdio_memcpy_fromio()" |
| 1678 | " DATA failed. status=%d.\n", |
| 1679 | __func__, status); |
| 1680 | sdio_release_host(str_func); |
| 1681 | return status; |
| 1682 | } |
| 1683 | |
| 1684 | /* updating an offset according to cyclic buffer size */ |
| 1685 | reg_str->dl_rd_ptr.reg_val = |
| 1686 | (reg_str->dl_rd_ptr.reg_val + size_to_read) % |
| 1687 | client_buffer_size; |
| 1688 | /* keeping sdio_dld_info up to date */ |
| 1689 | sdio_dld_info.cl_dl_rd_ptr = reg_str->dl_rd_ptr.reg_val; |
| 1690 | |
| 1691 | status = sdio_memcpy_toio(str_func, |
| 1692 | reg_str->dl_rd_ptr.reg_offset, |
| 1693 | (void *)®_str->dl_rd_ptr.reg_val, |
| 1694 | sizeof(reg_str->dl_rd_ptr.reg_val)); |
| 1695 | |
| 1696 | if (status) { |
| 1697 | pr_err(MODULE_NAME ": %s - sdio_memcpy_toio() " |
| 1698 | "UPDATE PTR failed. status=%d.\n", |
| 1699 | __func__, status); |
| 1700 | } |
| 1701 | |
| 1702 | sdio_release_host(str_func); |
| 1703 | return status; |
| 1704 | } |
| 1705 | |
| 1706 | /** |
| 1707 | * sdio_memcpy_toio_wrapper |
| 1708 | * writes to sdioc, and updats the sdioc registers according |
| 1709 | * to how many bytes were actually read. |
| 1710 | * |
| 1711 | * @str_func: a pointer to func struct. |
| 1712 | * @client_wr_ptr: sdioc downlink write ptr. |
| 1713 | * @h_read_ptr: host incoming read ptrs |
| 1714 | * @buf_write_from: buffer to write from. |
| 1715 | * @bytes_to_write: number of bytes to write. |
| 1716 | * @return 0 on success or negative value on error. |
| 1717 | */ |
| 1718 | static int sdio_memcpy_toio_wrapper(struct sdio_func *str_func, |
| 1719 | unsigned int client_wr_ptr, |
| 1720 | unsigned int h_read_ptr, |
| 1721 | void *buf_write_from, |
| 1722 | int bytes_to_write) |
| 1723 | { |
| 1724 | int status = 0; |
| 1725 | struct sdioc_reg_chunk *reg_str = |
| 1726 | &sdio_dld->sdio_dloader_data.sdioc_reg; |
| 1727 | struct sdio_data *outgoing = &sdio_dld->sdio_dloader_data.outgoing_data; |
| 1728 | |
| 1729 | if (!str_func) { |
| 1730 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 1731 | __func__); |
| 1732 | return -EINVAL; |
| 1733 | } |
| 1734 | |
| 1735 | if (!buf_write_from) { |
| 1736 | pr_err(MODULE_NAME ": %s - param ""buf_write_from"" is NULL.\n", |
| 1737 | __func__); |
| 1738 | return -EINVAL; |
| 1739 | } |
| 1740 | |
| 1741 | sdio_claim_host(str_func); |
| 1742 | |
| 1743 | pr_debug(MODULE_NAME ": %s, WRITING DATA TOIO to address 0x%x, " |
| 1744 | "bytes_to_write=%d\n", |
| 1745 | __func__, |
| 1746 | reg_str->up_buff_address.reg_val + reg_str->up_wr_ptr.reg_val, |
| 1747 | bytes_to_write); |
| 1748 | |
| 1749 | status = sdio_memcpy_toio(str_func, |
| 1750 | reg_str->up_buff_address.reg_val + |
| 1751 | reg_str->up_wr_ptr.reg_val, |
| 1752 | (void *) (outgoing->data + h_read_ptr), |
| 1753 | bytes_to_write); |
| 1754 | |
| 1755 | if (status) { |
| 1756 | pr_err(MODULE_NAME ": %s - sdio_memcpy_toio() " |
| 1757 | "DATA failed. status=%d.\n", __func__, status); |
| 1758 | sdio_release_host(str_func); |
| 1759 | return status; |
| 1760 | } |
| 1761 | |
| 1762 | sdio_dld_info.global_bytes_write_toio += bytes_to_write; |
| 1763 | outgoing->num_of_bytes_in_use -= bytes_to_write; |
| 1764 | |
| 1765 | /* |
| 1766 | * if writing to client succeeded, then |
| 1767 | * 1. update the client up_wr_ptr |
| 1768 | * 2. update the host outgoing rd ptr |
| 1769 | **/ |
| 1770 | reg_str->up_wr_ptr.reg_val = |
| 1771 | ((reg_str->up_wr_ptr.reg_val + bytes_to_write) % |
| 1772 | reg_str->ul_buff_size.reg_val); |
| 1773 | |
| 1774 | /* keeping sdio_dld_info up to date */ |
| 1775 | sdio_dld_info.cl_up_wr_ptr = reg_str->up_wr_ptr.reg_val; |
| 1776 | |
| 1777 | outgoing->offset_read_p = |
| 1778 | ((outgoing->offset_read_p + bytes_to_write) % |
| 1779 | outgoing->buffer_size); |
| 1780 | |
| 1781 | /* keeping sdio_dld_info up to date*/ |
| 1782 | sdio_dld_info.host_read_ptr = outgoing->offset_read_p; |
| 1783 | |
| 1784 | #ifdef CONFIG_DEBUG_FS |
| 1785 | debugfs_glob.global_write_toio = bytes_to_write; |
| 1786 | update_gd(SDIO_DLD_DEBUGFS_CASE_4_CODE); |
| 1787 | #endif |
| 1788 | |
| 1789 | /* updating uplink write pointer according to size that was written */ |
| 1790 | status = sdio_memcpy_toio(str_func, |
| 1791 | reg_str->up_wr_ptr.reg_offset, |
| 1792 | (void *)(®_str->up_wr_ptr.reg_val), |
| 1793 | sizeof(reg_str->up_wr_ptr.reg_val)); |
| 1794 | if (status) { |
| 1795 | pr_err(MODULE_NAME ": %s - sdio_memcpy_toio() " |
| 1796 | "UPDATE PTR failed. status=%d.\n", |
| 1797 | __func__, status); |
| 1798 | } |
| 1799 | |
| 1800 | sdio_release_host(str_func); |
| 1801 | return status; |
| 1802 | } |
| 1803 | |
| 1804 | /** |
| 1805 | * sdio_dld_read |
| 1806 | * reads from sdioc |
| 1807 | * |
| 1808 | * @client_rd_ptr: sdioc downlink read ptr. |
| 1809 | * @client_wr_ptr: sdioc downlink write ptr. |
| 1810 | * @reg_str: sdioc register shadowing struct. |
| 1811 | * @str_func: a pointer to func struct. |
| 1812 | * @bytes_read:how many bytes read. |
| 1813 | * @return 0 on success or negative value on error. |
| 1814 | */ |
| 1815 | static int sdio_dld_read(unsigned int client_rd_ptr, |
| 1816 | unsigned int client_wr_ptr, |
| 1817 | struct sdioc_reg_chunk *reg_str, |
| 1818 | struct sdio_func *str_func, |
| 1819 | int *bytes_read) |
| 1820 | { |
| 1821 | int status = 0; |
| 1822 | struct sdio_data *incoming = &sdio_dld->sdio_dloader_data.incoming_data; |
| 1823 | |
| 1824 | if (!reg_str) { |
| 1825 | pr_err(MODULE_NAME ": %s - param ""reg_str"" is NULL.\n", |
| 1826 | __func__); |
| 1827 | return -EINVAL; |
| 1828 | } |
| 1829 | |
| 1830 | if (!str_func) { |
| 1831 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 1832 | __func__); |
| 1833 | return -EINVAL; |
| 1834 | } |
| 1835 | |
| 1836 | if (!bytes_read) { |
| 1837 | pr_err(MODULE_NAME ": %s - param ""bytes_read"" is NULL.\n", |
| 1838 | __func__); |
| 1839 | return -EINVAL; |
| 1840 | } |
| 1841 | |
| 1842 | /* there is data to read in ONE chunk */ |
| 1843 | if (client_wr_ptr > client_rd_ptr) { |
| 1844 | status = sdio_memcpy_fromio_wrapper( |
| 1845 | str_func, |
| 1846 | client_rd_ptr, |
| 1847 | client_wr_ptr, |
| 1848 | (void *)incoming->data, |
| 1849 | reg_str->dl_buff_address.reg_val + client_rd_ptr, |
| 1850 | client_wr_ptr - client_rd_ptr, |
| 1851 | reg_str->dl_buff_size.reg_val); |
| 1852 | |
| 1853 | if (status) { |
| 1854 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 1855 | "sdio_memcpy_fromio_wrapper(). " |
| 1856 | "SINGLE CHUNK READ. status=%d\n", |
| 1857 | __func__, status); |
| 1858 | return status; |
| 1859 | } |
| 1860 | |
| 1861 | incoming->num_of_bytes_in_use += client_wr_ptr - client_rd_ptr; |
| 1862 | *bytes_read = client_wr_ptr - client_rd_ptr; |
| 1863 | |
| 1864 | #ifdef CONFIG_DEBUG_FS |
| 1865 | debugfs_glob.global_to_read = |
| 1866 | client_wr_ptr - client_rd_ptr; |
| 1867 | update_gd(SDIO_DLD_DEBUGFS_CASE_11_CODE); |
| 1868 | #endif |
| 1869 | } |
| 1870 | |
| 1871 | /* there is data to read in TWO chunks */ |
| 1872 | else { |
| 1873 | int dl_buf_size = reg_str->dl_buff_size.reg_val; |
| 1874 | int tail_size = dl_buf_size - client_rd_ptr; |
| 1875 | |
| 1876 | /* reading chunk#1: from rd_ptr to the end of the buffer */ |
| 1877 | status = sdio_memcpy_fromio_wrapper( |
| 1878 | str_func, |
| 1879 | client_rd_ptr, |
| 1880 | dl_buf_size, |
| 1881 | (void *)incoming->data, |
| 1882 | reg_str->dl_buff_address.reg_val + client_rd_ptr, |
| 1883 | tail_size, |
| 1884 | dl_buf_size); |
| 1885 | |
| 1886 | if (status) { |
| 1887 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 1888 | "sdio_memcpy_fromio_wrapper(). " |
| 1889 | "1 of 2 CHUNKS READ. status=%d\n", |
| 1890 | __func__, status); |
| 1891 | return status; |
| 1892 | } |
| 1893 | |
| 1894 | incoming->num_of_bytes_in_use += tail_size; |
| 1895 | *bytes_read = tail_size; |
| 1896 | |
| 1897 | #ifdef CONFIG_DEBUG_FS |
| 1898 | debugfs_glob.global_to_read = tail_size; |
| 1899 | update_gd(SDIO_DLD_DEBUGFS_CASE_11_CODE); |
| 1900 | #endif |
| 1901 | |
| 1902 | /* reading chunk#2: reading from beginning buffer */ |
| 1903 | status = sdio_memcpy_fromio_wrapper( |
| 1904 | str_func, |
| 1905 | client_rd_ptr, |
| 1906 | client_wr_ptr, |
| 1907 | (void *)(incoming->data + tail_size), |
| 1908 | reg_str->dl_buff_address.reg_val, |
| 1909 | client_wr_ptr, |
| 1910 | reg_str->dl_buff_size.reg_val); |
| 1911 | |
| 1912 | if (status) { |
| 1913 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 1914 | "sdio_memcpy_fromio_wrapper(). " |
| 1915 | "2 of 2 CHUNKS READ. status=%d\n", |
| 1916 | __func__, status); |
| 1917 | return status; |
| 1918 | } |
| 1919 | |
| 1920 | incoming->num_of_bytes_in_use += client_wr_ptr; |
| 1921 | *bytes_read += client_wr_ptr; |
| 1922 | |
| 1923 | #ifdef CONFIG_DEBUG_FS |
| 1924 | debugfs_glob.global_to_read = client_wr_ptr; |
| 1925 | update_gd(SDIO_DLD_DEBUGFS_CASE_11_CODE); |
| 1926 | #endif |
| 1927 | } |
| 1928 | return 0; |
| 1929 | } |
| 1930 | |
| 1931 | /** |
| 1932 | * sdio_dld_main_task |
| 1933 | * sdio downloader main task. reads mailboxf checks if there is |
| 1934 | * anything to read, checks if host has anything to |
| 1935 | * write. |
| 1936 | * |
| 1937 | * @card: a pointer to mmc_card. |
| 1938 | * @return 0 on success or negative value on error. |
| 1939 | */ |
| 1940 | static int sdio_dld_main_task(void *card) |
| 1941 | { |
| 1942 | int status = 0; |
| 1943 | struct tty_struct *tty = sdio_dld->tty_str; |
| 1944 | struct sdioc_reg_chunk *reg_str = |
| 1945 | &sdio_dld->sdio_dloader_data.sdioc_reg; |
| 1946 | int func = sdio_dld->sdioc_boot_func; |
| 1947 | struct sdio_func *str_func = NULL; |
| 1948 | struct sdio_data *outgoing = &sdio_dld->sdio_dloader_data.outgoing_data; |
| 1949 | struct sdio_data *incoming = &sdio_dld->sdio_dloader_data.incoming_data; |
| 1950 | struct sdio_dld_task *task = &sdio_dld->dld_main_thread; |
| 1951 | int retries = 0; |
| 1952 | #ifdef PUSH_STRING |
| 1953 | int bytes_pushed = 0; |
| 1954 | #endif |
| 1955 | |
| 1956 | msleep(SLEEP_MS); |
| 1957 | |
| 1958 | if (!card) { |
| 1959 | pr_err(MODULE_NAME ": %s - param ""card"" is NULL.\n", |
| 1960 | __func__); |
| 1961 | return -EINVAL; |
| 1962 | } |
| 1963 | |
| 1964 | if (!tty) { |
| 1965 | pr_err(MODULE_NAME ": %s - param ""tty"" is NULL.\n", |
| 1966 | __func__); |
| 1967 | return -EINVAL; |
| 1968 | } |
| 1969 | |
| 1970 | str_func = ((struct mmc_card *)card)-> |
| 1971 | sdio_func[REAL_FUNC_TO_FUNC_IN_ARRAY(func)]; |
| 1972 | |
| 1973 | if (!str_func) { |
| 1974 | pr_err(MODULE_NAME ": %s - param ""str_func"" is NULL.\n", |
| 1975 | __func__); |
| 1976 | return -EINVAL; |
| 1977 | } |
| 1978 | |
| 1979 | while (true) { |
| 1980 | /* client pointers for both buffers */ |
| 1981 | int client_ul_wr_ptr = 0; |
| 1982 | int client_ul_rd_ptr = 0; |
| 1983 | int client_dl_wr_ptr = 0; |
| 1984 | int client_dl_rd_ptr = 0; |
| 1985 | |
| 1986 | /* host pointer for outgoing buffer */ |
| 1987 | int h_out_wr_ptr = 0; |
| 1988 | int h_out_rd_ptr = 0; |
| 1989 | |
| 1990 | int h_bytes_rdy_wr = 0; |
| 1991 | int c_bytes_rdy_rcve = 0; |
| 1992 | |
| 1993 | int need_to_write = 0; |
| 1994 | int need_to_read = 0; |
| 1995 | |
| 1996 | /* |
| 1997 | * forever, checking for signal to die, then read MailBox. |
| 1998 | * if nothing to read or nothing to write to client, sleep, |
| 1999 | * and again read MailBox |
| 2000 | */ |
| 2001 | do { |
| 2002 | int dummy = 0; |
| 2003 | |
| 2004 | /* checking if a signal to die was sent */ |
| 2005 | if (atomic_read(&task->please_close) == 1) { |
| 2006 | |
| 2007 | pr_debug(MODULE_NAME ": %s - 0x%x was written " |
| 2008 | "to 9K\n", __func__, SDIOC_EXIT_CODE); |
| 2009 | |
| 2010 | sdio_claim_host(str_func); |
| 2011 | |
| 2012 | /* returned value is not checked on purpose */ |
| 2013 | sdio_memcpy_toio( |
| 2014 | str_func, |
| 2015 | reg_str->good_to_exit_ptr.reg_offset, |
| 2016 | (void *)®_str->good_to_exit_ptr. |
| 2017 | reg_val, |
| 2018 | sizeof(reg_str->good_to_exit_ptr. |
| 2019 | reg_val)); |
| 2020 | |
| 2021 | sdio_release_host(str_func); |
| 2022 | |
| 2023 | task->exit_wait.wake_up_signal = 1; |
| 2024 | wake_up(&task->exit_wait.wait_event); |
| 2025 | return 0; |
| 2026 | } |
| 2027 | |
| 2028 | status = mailbox_to_seq_chunk_read_ptrs(str_func); |
| 2029 | if (status) { |
| 2030 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 2031 | "mailbox_to_seq_chunk_read_ptrs(). " |
| 2032 | "status=%d\n", __func__, status); |
| 2033 | return status; |
| 2034 | } |
| 2035 | |
| 2036 | /* calculate how many bytes the host has send */ |
| 2037 | h_out_wr_ptr = outgoing->offset_write_p; |
| 2038 | h_out_rd_ptr = outgoing->offset_read_p; |
| 2039 | |
| 2040 | status = sdioc_bytes_till_end_of_buffer( |
| 2041 | h_out_wr_ptr, |
| 2042 | h_out_rd_ptr, |
| 2043 | outgoing->buffer_size, |
| 2044 | &dummy, |
| 2045 | &h_bytes_rdy_wr); |
| 2046 | |
| 2047 | if (status) { |
| 2048 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 2049 | "sdioc_bytes_till_end_of_buffer(). " |
| 2050 | "status=%d\n", __func__, status); |
| 2051 | return status; |
| 2052 | } |
| 2053 | |
| 2054 | /* is there something to read from client */ |
| 2055 | client_dl_wr_ptr = reg_str->dl_wr_ptr.reg_val; |
| 2056 | client_dl_rd_ptr = reg_str->dl_rd_ptr.reg_val; |
| 2057 | |
| 2058 | if (client_dl_rd_ptr != client_dl_wr_ptr) |
| 2059 | need_to_read = 1; |
| 2060 | |
| 2061 | /* |
| 2062 | * calculate how many bytes the client can receive |
| 2063 | * from host |
| 2064 | */ |
| 2065 | client_ul_wr_ptr = reg_str->up_wr_ptr.reg_val; |
| 2066 | client_ul_rd_ptr = reg_str->up_rd_ptr.reg_val; |
| 2067 | |
| 2068 | status = sdioc_bytes_till_end_of_buffer( |
| 2069 | client_ul_wr_ptr, |
| 2070 | client_ul_rd_ptr, |
| 2071 | reg_str->ul_buff_size.reg_val, |
| 2072 | &c_bytes_rdy_rcve, |
| 2073 | &dummy); |
| 2074 | |
| 2075 | if (status) { |
| 2076 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 2077 | "sdioc_bytes_till_end_of_buffer(). " |
| 2078 | "status=%d\n", __func__, status); |
| 2079 | return status; |
| 2080 | } |
| 2081 | |
| 2082 | /* if host has anything to write */ |
| 2083 | if (h_bytes_rdy_wr > 0) |
| 2084 | need_to_write = 1; |
| 2085 | |
| 2086 | if (need_to_write || need_to_read) |
| 2087 | break; |
| 2088 | |
| 2089 | spin_lock_irqsave(&lock2, lock_flags2); |
| 2090 | sdio_dld->main_loop_event.wake_up_signal = 0; |
| 2091 | spin_unlock_irqrestore(&lock2, lock_flags2); |
| 2092 | |
| 2093 | pr_debug(MODULE_NAME ": %s - MAIN LOOP - WAITING...\n", |
| 2094 | __func__); |
| 2095 | #ifdef CONFIG_DEBUG_FS |
| 2096 | update_gd(SDIO_DLD_DEBUGFS_CASE_6_CODE); |
| 2097 | #endif |
| 2098 | wait_event(sdio_dld->main_loop_event.wait_event, |
| 2099 | sdio_dld->main_loop_event.wake_up_signal); |
| 2100 | #ifdef CONFIG_DEBUG_FS |
| 2101 | update_gd(SDIO_DLD_DEBUGFS_CASE_7_CODE); |
| 2102 | #endif |
| 2103 | |
| 2104 | pr_debug(MODULE_NAME ": %s - MAIN LOOP - WOKE UP...\n", |
| 2105 | __func__); |
| 2106 | |
| 2107 | } while (1); |
| 2108 | |
| 2109 | /* CHECK IF THERE IS ANYTHING TO READ IN CLIENT */ |
| 2110 | if (need_to_read) { |
| 2111 | #ifdef PUSH_STRING |
| 2112 | int num_push = 0; |
| 2113 | int left = 0; |
| 2114 | int bytes_read; |
| 2115 | #else |
| 2116 | int i; |
| 2117 | #endif |
| 2118 | need_to_read = 0; |
| 2119 | |
| 2120 | status = sdio_dld_read(client_dl_rd_ptr, |
| 2121 | client_dl_wr_ptr, |
| 2122 | reg_str, |
| 2123 | str_func, |
| 2124 | &bytes_read); |
| 2125 | |
| 2126 | if (status) { |
| 2127 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 2128 | "sdio_dld_read(). status=%d\n", |
| 2129 | __func__, status); |
| 2130 | return status; |
| 2131 | } |
| 2132 | |
| 2133 | sdio_dld_info.global_bytes_read_fromio += |
| 2134 | bytes_read; |
| 2135 | |
| 2136 | bytes_pushed = 0; |
| 2137 | #ifdef PUSH_STRING |
| 2138 | left = incoming->num_of_bytes_in_use; |
| 2139 | start_timer(&sdio_dld->push_timer, |
| 2140 | sdio_dld->push_timer_ms); |
| 2141 | do { |
| 2142 | num_push = tty_insert_flip_string( |
| 2143 | tty, |
| 2144 | incoming->data+bytes_pushed, |
| 2145 | left); |
| 2146 | |
| 2147 | bytes_pushed += num_push; |
| 2148 | left -= num_push; |
| 2149 | tty_flip_buffer_push(tty); |
| 2150 | } while (left != 0); |
| 2151 | |
| 2152 | del_timer(&sdio_dld->push_timer); |
| 2153 | |
| 2154 | if (bytes_pushed != incoming->num_of_bytes_in_use) { |
| 2155 | pr_err(MODULE_NAME ": %s - failed\n", |
| 2156 | __func__); |
| 2157 | } |
| 2158 | #else |
| 2159 | pr_debug(MODULE_NAME ": %s - NEED TO READ %d\n", |
| 2160 | __func__, incoming->num_of_bytes_in_use); |
| 2161 | |
| 2162 | for (i = 0 ; i < incoming->num_of_bytes_in_use ; ++i) { |
| 2163 | int err = 0; |
| 2164 | err = tty_insert_flip_char(tty, |
| 2165 | incoming->data[i], |
| 2166 | TTY_NORMAL); |
| 2167 | tty_flip_buffer_push(tty); |
| 2168 | } |
| 2169 | |
| 2170 | pr_debug(MODULE_NAME ": %s - JUST READ\n", __func__); |
| 2171 | #endif /*PUSH_STRING*/ |
| 2172 | sdio_dld_info.global_bytes_push_tty += |
| 2173 | incoming->num_of_bytes_in_use; |
| 2174 | #ifdef CONFIG_DEBUG_FS |
| 2175 | debugfs_glob.global_push_to_tty = bytes_read; |
| 2176 | update_gd(SDIO_DLD_DEBUGFS_CASE_12_CODE); |
| 2177 | #endif |
| 2178 | incoming->num_of_bytes_in_use = 0; |
| 2179 | tty_flip_buffer_push(tty); |
| 2180 | } |
| 2181 | |
| 2182 | /* CHECK IF THERE IS ANYTHING TO WRITE IN HOST AND HOW MUCH */ |
| 2183 | if (need_to_write) { |
| 2184 | int dummy = 0; |
| 2185 | |
| 2186 | do { |
| 2187 | int bytes_to_write = min(c_bytes_rdy_rcve, |
| 2188 | h_bytes_rdy_wr); |
| 2189 | |
| 2190 | /* |
| 2191 | * in case nothing to send or no room to |
| 2192 | * receive |
| 2193 | */ |
| 2194 | if (bytes_to_write == 0) |
| 2195 | break; |
| 2196 | |
| 2197 | if (client_ul_rd_ptr == 0 && |
| 2198 | (client_ul_rd_ptr != client_ul_wr_ptr)) |
| 2199 | break; |
| 2200 | |
| 2201 | /* |
| 2202 | * if client_rd_ptr points to start, but there |
| 2203 | * is data to read wait until WRITE_TILL_END |
| 2204 | * before writing a chunk of data, to avoid |
| 2205 | * writing until (BUF_SIZE - 1), because it will |
| 2206 | * yield an extra write of "1" bytes |
| 2207 | */ |
| 2208 | if (client_ul_rd_ptr == 0 && |
| 2209 | (client_ul_rd_ptr != client_ul_wr_ptr) && |
| 2210 | retries < WRITE_TILL_END_RETRIES) { |
| 2211 | retries++; |
| 2212 | break; |
| 2213 | } |
| 2214 | retries = 0; |
| 2215 | |
| 2216 | #ifdef CONFIG_DEBUG_FS |
| 2217 | debugfs_glob.global_8k_has = h_bytes_rdy_wr; |
| 2218 | debugfs_glob.global_9k_has = c_bytes_rdy_rcve; |
| 2219 | debugfs_glob.global_min = bytes_to_write; |
| 2220 | update_gd(SDIO_DLD_DEBUGFS_CASE_2_CODE); |
| 2221 | #endif |
| 2222 | need_to_write = 0; |
| 2223 | |
| 2224 | pr_debug(MODULE_NAME ": %s - NEED TO WRITE " |
| 2225 | "TOIO %d\n", |
| 2226 | __func__, bytes_to_write); |
| 2227 | |
| 2228 | status = sdio_memcpy_toio_wrapper( |
| 2229 | str_func, |
| 2230 | reg_str->up_wr_ptr.reg_val, |
| 2231 | outgoing->offset_read_p, |
| 2232 | (void *)((char *)outgoing->data + |
| 2233 | outgoing->offset_read_p), |
| 2234 | bytes_to_write); |
| 2235 | |
| 2236 | if (status) { |
| 2237 | pr_err(MODULE_NAME ": %s - Failure in " |
| 2238 | "Function " |
| 2239 | "sdio_memcpy_toio_wrapper(). " |
| 2240 | "SINGLE CHUNK WRITE. " |
| 2241 | "status=%d\n", |
| 2242 | __func__, status); |
| 2243 | return status; |
| 2244 | } |
| 2245 | |
| 2246 | sdio_claim_host(str_func); |
| 2247 | |
| 2248 | status = sdio_memcpy_fromio( |
| 2249 | str_func, |
| 2250 | (void *)®_str->up_rd_ptr.reg_val, |
| 2251 | SDIOC_UL_RD_PTR, |
| 2252 | sizeof(reg_str->up_rd_ptr.reg_val)); |
| 2253 | |
| 2254 | if (status) { |
| 2255 | pr_err(MODULE_NAME ": %s - " |
| 2256 | "sdio_memcpy_fromio() " |
| 2257 | "failed. status=%d\n", |
| 2258 | __func__, status); |
| 2259 | sdio_release_host(str_func); |
| 2260 | |
| 2261 | return status; |
| 2262 | } |
| 2263 | |
| 2264 | sdio_release_host(str_func); |
| 2265 | |
| 2266 | spin_lock_irqsave(&lock1, lock_flags1); |
| 2267 | if (sdio_dld->write_callback_event. |
| 2268 | wake_up_signal == 0) { |
| 2269 | sdio_dld->write_callback_event. |
| 2270 | wake_up_signal = 1; |
| 2271 | wake_up(&sdio_dld-> |
| 2272 | write_callback_event. |
| 2273 | wait_event); |
| 2274 | } |
| 2275 | |
| 2276 | spin_unlock_irqrestore(&lock1, lock_flags1); |
| 2277 | client_ul_wr_ptr = reg_str->up_wr_ptr.reg_val; |
| 2278 | client_ul_rd_ptr = reg_str->up_rd_ptr.reg_val; |
| 2279 | |
| 2280 | status = sdioc_bytes_till_end_of_buffer( |
| 2281 | client_ul_wr_ptr, |
| 2282 | client_ul_rd_ptr, |
| 2283 | reg_str->ul_buff_size.reg_val, |
| 2284 | &c_bytes_rdy_rcve, |
| 2285 | &dummy); |
| 2286 | |
| 2287 | /* calculate how many bytes host has to send */ |
| 2288 | h_out_wr_ptr = outgoing->offset_write_p; |
| 2289 | h_out_rd_ptr = outgoing->offset_read_p; |
| 2290 | |
| 2291 | status = sdioc_bytes_till_end_of_buffer( |
| 2292 | h_out_wr_ptr, |
| 2293 | h_out_rd_ptr, |
| 2294 | outgoing->buffer_size, |
| 2295 | &dummy, |
| 2296 | &h_bytes_rdy_wr); |
| 2297 | |
| 2298 | } while (h_out_wr_ptr != h_out_rd_ptr); |
| 2299 | } |
| 2300 | } |
| 2301 | return 0; |
| 2302 | } |
| 2303 | |
| 2304 | /** |
| 2305 | * sdio_dld_init_global |
| 2306 | * initialization of sdio_dld global struct |
| 2307 | * |
| 2308 | * @card: a pointer to mmc_card. |
| 2309 | * @return 0 on success or negative value on error. |
| 2310 | */ |
| 2311 | static int sdio_dld_init_global(struct mmc_card *card, |
| 2312 | int(*done)(void)) |
| 2313 | { |
| 2314 | if (!card) { |
| 2315 | pr_err(MODULE_NAME ": %s - param ""card"" is NULL.\n", |
| 2316 | __func__); |
| 2317 | return -EINVAL; |
| 2318 | } |
| 2319 | |
| 2320 | if (!done) { |
| 2321 | pr_err(MODULE_NAME ": %s - param ""done"" is NULL.\n", |
| 2322 | __func__); |
| 2323 | return -EINVAL; |
| 2324 | } |
| 2325 | |
| 2326 | sdio_dld->done_callback = done; |
| 2327 | sdio_dld->card = card; |
| 2328 | init_waitqueue_head(&sdio_dld->dld_main_thread.exit_wait.wait_event); |
| 2329 | sdio_dld->write_callback_event.wake_up_signal = 1; |
| 2330 | sdio_dld->main_loop_event.wake_up_signal = 1; |
| 2331 | |
| 2332 | sdio_dld->sdio_dloader_data.sdioc_reg.dl_buff_size.reg_offset = |
| 2333 | SDIOC_DL_BUFF_SIZE_OFFSET; |
| 2334 | |
| 2335 | sdio_dld->sdio_dloader_data.sdioc_reg.dl_rd_ptr.reg_offset = |
| 2336 | SDIOC_DL_RD_PTR; |
| 2337 | |
| 2338 | sdio_dld->sdio_dloader_data.sdioc_reg.dl_wr_ptr.reg_offset = |
| 2339 | SDIOC_DL_WR_PTR; |
| 2340 | |
| 2341 | sdio_dld->sdio_dloader_data.sdioc_reg.ul_buff_size.reg_offset = |
| 2342 | SDIOC_UP_BUFF_SIZE_OFFSET; |
| 2343 | |
| 2344 | sdio_dld->sdio_dloader_data.sdioc_reg.up_rd_ptr.reg_offset = |
| 2345 | SDIOC_UL_RD_PTR; |
| 2346 | |
| 2347 | sdio_dld->sdio_dloader_data.sdioc_reg.up_wr_ptr.reg_offset = |
| 2348 | SDIOC_UL_WR_PTR; |
| 2349 | |
| 2350 | sdio_dld->sdio_dloader_data.sdioc_reg.good_to_exit_ptr.reg_offset = |
| 2351 | SDIOC_EXIT_PTR; |
| 2352 | |
| 2353 | sdio_dld->sdio_dloader_data.sdioc_reg.dl_buff_address.reg_offset = |
| 2354 | SDIOC_DL_BUFF_ADDRESS; |
| 2355 | |
| 2356 | sdio_dld->sdio_dloader_data.sdioc_reg.up_buff_address.reg_offset = |
| 2357 | SDIOC_UP_BUFF_ADDRESS; |
| 2358 | |
| 2359 | sdio_dld_set_op_mode(SDIO_DLD_NORMAL_MODE); |
| 2360 | |
| 2361 | return 0; |
| 2362 | } |
| 2363 | |
| 2364 | /** |
| 2365 | * sdio_downloader_setup |
| 2366 | * initializes the TTY driver |
| 2367 | * |
| 2368 | * @card: a pointer to mmc_card. |
| 2369 | * @num_of_devices: number of devices. |
| 2370 | * @channel_number: channel number. |
| 2371 | * @return 0 on success or negative value on error. |
| 2372 | * |
| 2373 | * The TTY stack needs to know in advance how many devices it should |
| 2374 | * plan to manage. Use this call to set up the ports that will |
| 2375 | * be exported through SDIO. |
| 2376 | */ |
| 2377 | int sdio_downloader_setup(struct mmc_card *card, |
| 2378 | unsigned int num_of_devices, |
| 2379 | int channel_number, |
| 2380 | int(*done)(void)) |
| 2381 | { |
| 2382 | int status = 0; |
| 2383 | int result = 0; |
| 2384 | int func_in_array = 0; |
| 2385 | struct sdio_func *str_func = NULL; |
| 2386 | struct device *tty_dev; |
| 2387 | |
Venkat Gopalakrishnan | 4d6e9c9 | 2012-12-06 10:59:47 -0800 | [diff] [blame] | 2388 | if (atomic_read(&sdio_dld_in_use) == 1) |
| 2389 | return -EBUSY; |
| 2390 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 2391 | if (num_of_devices == 0 || num_of_devices > MAX_NUM_DEVICES) { |
| 2392 | pr_err(MODULE_NAME ": %s - invalid number of devices\n", |
| 2393 | __func__); |
| 2394 | return -EINVAL; |
| 2395 | } |
| 2396 | |
| 2397 | if (!card) { |
| 2398 | pr_err(MODULE_NAME ": %s - param ""card"" is NULL.\n", |
| 2399 | __func__); |
| 2400 | return -EINVAL; |
| 2401 | } |
| 2402 | |
| 2403 | if (!done) { |
| 2404 | pr_err(MODULE_NAME ": %s - param ""done"" is NULL.\n", |
| 2405 | __func__); |
| 2406 | return -EINVAL; |
| 2407 | } |
| 2408 | |
| 2409 | sdio_dld = kzalloc(sizeof(struct sdio_downloader), GFP_KERNEL); |
| 2410 | if (!sdio_dld) { |
| 2411 | pr_err(MODULE_NAME ": %s - couldn't allocate sdio_dld data " |
| 2412 | "structure.", __func__); |
| 2413 | return -ENOMEM; |
| 2414 | } |
| 2415 | |
| 2416 | #ifdef CONFIG_DEBUG_FS |
| 2417 | bootloader_debugfs_init(); |
| 2418 | #endif /* CONFIG_DEBUG_FS */ |
| 2419 | |
| 2420 | status = sdio_dld_init_global(card, done); |
| 2421 | |
| 2422 | if (status) { |
| 2423 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 2424 | "sdio_dld_init_global(). status=%d\n", |
| 2425 | __func__, status); |
| 2426 | kfree(sdio_dld); |
| 2427 | return status; |
| 2428 | } |
| 2429 | |
| 2430 | sdio_dld->tty_drv = alloc_tty_driver(num_of_devices); |
| 2431 | |
| 2432 | if (!sdio_dld->tty_drv) { |
| 2433 | pr_err(MODULE_NAME ": %s - param ""sdio_dld->tty_drv"" is " |
| 2434 | "NULL.\n", __func__); |
| 2435 | kfree(sdio_dld); |
| 2436 | return -EINVAL; |
| 2437 | } |
| 2438 | |
| 2439 | sdio_dld_set_op_mode((enum sdio_dld_op_mode)sdio_op_mode); |
| 2440 | |
| 2441 | /* according to op_mode, a different tty device is created */ |
| 2442 | if (sdio_dld->op_mode == SDIO_DLD_BOOT_TEST_MODE) |
| 2443 | sdio_dld->tty_drv->name = TTY_SDIO_DEV_TEST; |
| 2444 | else |
| 2445 | sdio_dld->tty_drv->name = TTY_SDIO_DEV; |
| 2446 | |
| 2447 | sdio_dld->tty_drv->owner = THIS_MODULE; |
| 2448 | sdio_dld->tty_drv->driver_name = "SDIO_Dloader"; |
| 2449 | |
| 2450 | /* uses dynamically assigned dev_t values */ |
| 2451 | sdio_dld->tty_drv->type = TTY_DRIVER_TYPE_SERIAL; |
| 2452 | sdio_dld->tty_drv->subtype = SERIAL_TYPE_NORMAL; |
| 2453 | sdio_dld->tty_drv->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV |
| 2454 | | TTY_DRIVER_RESET_TERMIOS; |
| 2455 | |
| 2456 | /* initializing the tty driver */ |
| 2457 | sdio_dld->tty_drv->init_termios = tty_std_termios; |
| 2458 | sdio_dld->tty_drv->init_termios.c_cflag = |
| 2459 | B4800 | CS8 | CREAD | HUPCL | CLOCAL; |
| 2460 | sdio_dld->tty_drv->init_termios.c_ispeed = INPUT_SPEED; |
| 2461 | sdio_dld->tty_drv->init_termios.c_ospeed = OUTPUT_SPEED; |
| 2462 | |
| 2463 | tty_set_operations(sdio_dld->tty_drv, &sdio_dloader_tty_ops); |
| 2464 | |
| 2465 | status = tty_register_driver(sdio_dld->tty_drv); |
| 2466 | if (status) { |
| 2467 | put_tty_driver(sdio_dld->tty_drv); |
| 2468 | pr_err(MODULE_NAME ": %s - tty_register_driver() failed\n", |
| 2469 | __func__); |
| 2470 | |
| 2471 | sdio_dld->tty_drv = NULL; |
| 2472 | kfree(sdio_dld); |
| 2473 | return status; |
| 2474 | } |
| 2475 | |
| 2476 | tty_dev = tty_register_device(sdio_dld->tty_drv, 0, NULL); |
| 2477 | if (IS_ERR(tty_dev)) { |
| 2478 | pr_err(MODULE_NAME ": %s - tty_register_device() " |
| 2479 | "failed\n", __func__); |
| 2480 | tty_unregister_driver(sdio_dld->tty_drv); |
| 2481 | kfree(sdio_dld); |
| 2482 | return PTR_ERR(tty_dev); |
| 2483 | } |
| 2484 | |
| 2485 | sdio_dld->sdioc_boot_func = SDIOC_CHAN_TO_FUNC_NUM(channel_number); |
| 2486 | func_in_array = REAL_FUNC_TO_FUNC_IN_ARRAY(sdio_dld->sdioc_boot_func); |
| 2487 | str_func = sdio_dld->card->sdio_func[func_in_array]; |
| 2488 | status = sdio_dld_init_func(str_func); |
| 2489 | if (status) { |
| 2490 | pr_err(MODULE_NAME ": %s - Failure in Function " |
| 2491 | "sdio_dld_init_func(). status=%d\n", |
| 2492 | __func__, status); |
| 2493 | goto exit_err; |
| 2494 | } |
| 2495 | |
| 2496 | #ifdef CONFIG_DEBUG_FS |
| 2497 | sdio_dld_debug_init(); |
| 2498 | #endif |
| 2499 | |
| 2500 | sdio_claim_host(str_func); |
| 2501 | |
| 2502 | /* |
| 2503 | * notifing the client by writing what mode we are by writing |
| 2504 | * to a special register |
| 2505 | */ |
| 2506 | status = sdio_memcpy_toio(str_func, |
| 2507 | SDIOC_OP_MODE_PTR, |
| 2508 | (void *)&sdio_dld->op_mode, |
| 2509 | sizeof(sdio_dld->op_mode)); |
| 2510 | |
| 2511 | sdio_release_host(str_func); |
| 2512 | |
| 2513 | if (status) { |
| 2514 | pr_err(MODULE_NAME ": %s - sdio_memcpy_toio() " |
| 2515 | "writing to OP_MODE_REGISTER failed. " |
| 2516 | "status=%d.\n", |
| 2517 | __func__, status); |
| 2518 | goto exit_err; |
| 2519 | } |
| 2520 | |
| 2521 | return 0; |
| 2522 | |
| 2523 | exit_err: |
| 2524 | tty_unregister_device(sdio_dld->tty_drv, 0); |
| 2525 | result = tty_unregister_driver(sdio_dld->tty_drv); |
| 2526 | if (result) |
| 2527 | pr_err(MODULE_NAME ": %s - tty_unregister_driver() " |
| 2528 | "failed. result=%d\n", __func__, -result); |
| 2529 | kfree(sdio_dld); |
| 2530 | return status; |
| 2531 | } |
| 2532 | |
Venkat Gopalakrishnan | 4d6e9c9 | 2012-12-06 10:59:47 -0800 | [diff] [blame] | 2533 | static void sdio_dld_tear_down(struct work_struct *work) |
| 2534 | { |
| 2535 | int status = 0; |
| 2536 | |
| 2537 | del_timer_sync(&sdio_dld->timer); |
| 2538 | del_timer_sync(&sdio_dld->push_timer); |
| 2539 | |
| 2540 | sdio_dld_dealloc_local_buffers(); |
| 2541 | |
| 2542 | tty_unregister_device(sdio_dld->tty_drv, 0); |
| 2543 | |
| 2544 | status = tty_unregister_driver(sdio_dld->tty_drv); |
| 2545 | |
| 2546 | if (status) { |
| 2547 | pr_err(MODULE_NAME ": %s - tty_unregister_driver() failed\n", |
| 2548 | __func__); |
| 2549 | } |
| 2550 | |
| 2551 | kfree(sdio_dld); |
| 2552 | atomic_set(&sdio_dld_in_use, 0); |
| 2553 | } |
| 2554 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 2555 | MODULE_LICENSE("GPL v2"); |
| 2556 | MODULE_DESCRIPTION("SDIO Downloader"); |
| 2557 | MODULE_AUTHOR("Yaniv Gardi <ygardi@codeaurora.org>"); |
| 2558 | MODULE_VERSION(DRV_VERSION); |
| 2559 | |