/******************************************************************************* OpenAirInterface Copyright(c) 1999 - 2014 Eurecom OpenAirInterface is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenAirInterface is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenAirInterface.The full GNU General Public License is included in this distribution in the file called "COPYING". If not, see <http://www.gnu.org/licenses/>. Contact Information OpenAirInterface Admin: openair_admin@eurecom.fr OpenAirInterface Tech : openair_tech@eurecom.fr OpenAirInterface Dev : openair4g-devel@lists.eurecom.fr Address : Eurecom, Campus SophiaTech, 450 Route des Chappes, CS 50193 - 06904 Biot Sophia Antipolis cedex, FRANCE *******************************************************************************/ /** fileops.c * * Device IOCTL File Operations on character device /dev/openair0 * * Authors: Matthias Ihmig <matthias.ihmig@mytum.de>, 2012, 2013 * Riadh Ghaddab <riadh.ghaddab@eurecom.fr> * Raymond Knopp <raymond.knopp@eurecom.fr> * * Changelog: * 14.01.2013: removed remaining of BIGPHYS stuff and replaced with pci_alloc_consistent */ #include <linux/delay.h> #include "openair_device.h" #include "defs.h" #include "extern.h" #include "pcie_interface.h" #define invert4(x) { \ unsigned int ltmp; \ ltmp=x; x=((ltmp & 0xff)<<24) | ((ltmp & 0xff00)<<8) | \ ((ltmp & 0xff0000)>>8) | ((ltmp & 0xff000000)>>24); \ } extern int get_frame_done; int is_card_num_invalid(int card) { if (card<0 || card>=number_of_cards) { printk("[openair][IOCTL]: ERROR: received invalid card number (%d)!\n", card); return -1; } else return 0; } //----------------------------------------------------------------------------- int openair_device_open (struct inode *inode,struct file *filp) { //printk("[openair][MODULE] openair_open()\n"); return 0; } //----------------------------------------------------------------------------- int openair_device_release (struct inode *inode,struct file *filp) { // printk("[openair][MODULE] openair_release(), MODE = %d\n",openair_daq_vars.mode); return 0; } //----------------------------------------------------------------------------- int openair_device_mmap(struct file *filp, struct vm_area_struct *vma) { unsigned long phys; unsigned long start = (unsigned long)vma->vm_start; unsigned long size = (unsigned long)(vma->vm_end-vma->vm_start); unsigned long maxsize; unsigned int memblock_ind; unsigned int card; memblock_ind = openair_mmap_getMemBlock( vma->vm_pgoff ); card = openair_mmap_getCard( vma->vm_pgoff ); /*printk("[openair][MMAP] called (start %lx, end %lx, pg_off %lx, size %lx)\n", vma->vm_start, vma->vm_end, vma->vm_pgoff, size); */ vma->vm_pgoff = 0; // not supported by 64 bit kernels //vma->vm_flags |= VM_RESERVED; vma->vm_flags |= VM_IO; if ( is_card_num_invalid(card) ) return -EINVAL; if (memblock_ind == openair_mmap_BIGSHM) { // map a buffer from bigshm maxsize = BIGSHM_SIZE_PAGES<<PAGE_SHIFT; if ( size > maxsize) { printk("[openair][MMAP][ERROR] Trying to map more than %d bytes (req size=%d)\n", (unsigned int)(BIGSHM_SIZE_PAGES<<PAGE_SHIFT), (unsigned int)size); return -EINVAL; } phys = bigshm_head_phys[card]; } else if ( (memblock_ind & 1) == 1) { // mmap a RX buffer maxsize = ADAC_BUFFERSZ_PERCHAN_B; if ( size > maxsize) { printk("[openair][MMAP][ERROR] Trying to map more than %d bytes (req size=%d)\n", (unsigned int)(ADAC_BUFFERSZ_PERCHAN_B), (unsigned int)size); return -EINVAL; } phys = p_exmimo_pci_phys[card]->adc_head[ openair_mmap_getAntRX(memblock_ind) ]; } else { // mmap a TX buffer maxsize = ADAC_BUFFERSZ_PERCHAN_B; if ( size > maxsize) { printk("[openair][MMAP][ERROR] Trying to map more than %d bytes (%d)\n", (unsigned int)(ADAC_BUFFERSZ_PERCHAN_B), (unsigned int)size); return -EINVAL; } phys = p_exmimo_pci_phys[card]->dac_head[ openair_mmap_getAntTX(memblock_ind) ]; } if (0) printk("[openair][MMAP] card%d: map phys (%08lx) at start %lx, end %lx, pg_off %lx, size %lx\n", card, phys, vma->vm_start, vma->vm_end, vma->vm_pgoff, size); /* loop through all the physical pages in the buffer */ /* Remember this won't work for vmalloc()d memory ! */ if (remap_pfn_range(vma, start, phys>>PAGE_SHIFT, vma->vm_end-vma->vm_start, vma->vm_page_prot)) { printk("[openair][MMAP] ERROR EAGAIN\n"); return -EAGAIN; } return 0; } //----------------------------------------------------------------------------- #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35) long openair_device_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) #else int openair_device_ioctl(struct inode *inode,struct file *filp, unsigned int cmd, unsigned long arg) #endif { /* arg is not meaningful if no arg is passed in user space */ //----------------------------------------------------------------------------- int i, c; int tmp; static unsigned int update_firmware_command; static unsigned int update_firmware_address; static unsigned int update_firmware_length; static unsigned int* update_firmware_kbuffer; static unsigned int* __user update_firmware_ubuffer; static unsigned int update_firmware_start_address; static unsigned int update_firmware_stack_pointer; static unsigned int update_firmware_bss_address; static unsigned int update_firmware_bss_size; unsigned int *fw_block; unsigned int sparc_tmp_0; unsigned int sparc_tmp_1; static unsigned int lendian_length; unsigned int get_frame_cnt=0; switch(cmd) { case openair_STOP: printk("[openair][IOCTL] openair_STOP(card%d)\n", (int)arg); if ( is_card_num_invalid((int)arg) ) return -EINVAL; exmimo_send_pccmd((int)arg, EXMIMO_STOP); break; case openair_STOP_WITHOUT_RESET: printk("[openair][IOCTL] openair_STOP_WITHOUT_RESET(card%d)\n", (int)arg); if ( is_card_num_invalid((int)arg) ) return -EINVAL; exmimo_send_pccmd((int)arg, EXMIMO_STOP_WITHOUT_RESET); break; case openair_GET_FRAME: get_frame_cnt=0; get_frame_done = 0; printk("[openair][IOCTL] : openair_GET_FRAME: calling exmimo_send_pccmd(%d, EXMIMO_GET_FRAME)\n", (int)arg); if ( is_card_num_invalid((int)arg) ) return -EINVAL; exmimo_send_pccmd((int)arg, EXMIMO_GET_FRAME); while (get_frame_cnt<10 && !get_frame_done) { msleep(10); get_frame_cnt++; } if (get_frame_cnt==200) printk("[openair][IOCTL] : Get frame error: no IRQ received within 2000ms.\n"); get_frame_done = 0; break; case openair_GET_BIGSHMTOPS_KVIRT: //printk("[openair][IOCTL] : openair_GET_BIGSHMTOPS_KVIRT (0x%p)[0] = %p[0] (bigshm_head) for 0..3 (sizeof %d) \n", (void *)arg, bigshm_head[0], sizeof(bigshm_head)); copy_to_user((void *)arg, bigshm_head, sizeof(bigshm_head)); break; case openair_GET_PCI_INTERFACE_BOTS_KVIRT: //printk("[openair][IOCTL] : openair_GET_PCI_INTERFACE_BOTS_KVIRT: copying exmimo_pci_kvirt(@%8p) to %lx (sizeof %d)\n", &exmimo_pci_kvirt[0], arg, sizeof(exmimo_pci_kvirt)); copy_to_user((void *)arg, exmimo_pci_kvirt, sizeof(exmimo_pci_kvirt)); break; case openair_GET_NUM_DETECTED_CARDS: //printk("[openair][IOCTL] : openair_GET_NUM_DETECTED_CARDS: *(0x%p) = %d\n", (void *)arg, number_of_cards); copy_to_user((void *)arg, &number_of_cards, sizeof(number_of_cards)); break; case openair_DUMP_CONFIG: //printk("[openair][IOCTL] openair_DUMP_CONFIG(%d)\n", (int)arg); if ( is_card_num_invalid((int)arg) ) { printk("[openair][IOCTL] openair_DUMP_CONFIG: Invalid card number %d.\n", (int)arg); return -EINVAL; } printk("[openair][IOCTL] : openair_DUMP_CONFIG(%d): exmimo_pci_kvirt[%d].exmimo_config_ptr = %p (phys %08x)\n", (int)arg, (int)arg, exmimo_pci_kvirt[(int)arg].exmimo_config_ptr, p_exmimo_pci_phys[(int)arg]->exmimo_config_ptr); printk("[openair][IOCTL]: EXMIMO_CONFIG: freq0 %u Hz, freq1 %u Hz, freqtx0 %u Hz, freqtx1 %u Hz, \nRX gain0 %d dB, RX Gain1 %d dB, autocal (%d,%d,%d,%d)\n", exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.rf_freq_rx[0], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.rf_freq_rx[1], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.rf_freq_tx[0], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.rf_freq_tx[1], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.rx_gain[0][0], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.rx_gain[1][0], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.do_autocal[0], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.do_autocal[1], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.do_autocal[2], exmimo_pci_kvirt[(int)arg].exmimo_config_ptr->rf.do_autocal[3]); exmimo_send_pccmd((int)arg, EXMIMO_CONFIG); break; case openair_START_RT_ACQUISITION: printk("[openair][IOCTL] openair_START_TX_SIG(%d): send_pccmd(EXMIMO_START_RT_ACQUISITION).\n", (int) arg); if ( is_card_num_invalid((int)arg) ) return -EINVAL; exmimo_send_pccmd((int)arg, EXMIMO_START_RT_ACQUISITION); break; case openair_UPDATE_FIRMWARE: printk("[openair][IOCTL] openair_UPDATE_FIRMWARE\n"); /*************************************************** * Updating the firmware of Cardbus-MIMO-1 or ExpressMIMO SoC * ***************************************************/ /* 1st argument of this ioctl indicates the action to perform among these: - Transfer a block of data at a specified address (given as the 2nd argument) and for a specified length (given as the 3rd argument, in number of 32-bit words). The USER-SPACE address where to find the block of data is given as the 4th argument. - Ask the Leon processor to clear the .bss section. In this case, the base address of section .bss is given as the 2nd argument, and its size is given as the 3rd one. - Ask the Leon processor to jump at a specified address (given as the 2nd argument, most oftenly expected to be the top address of Ins, Scratch Pad Ram), after having set the stack pointer (given as the 3rd argument). For the openair_UPDATE_FIRMWARE ioctl, we perform a partial infinite loop while acknowledging the PCI irq from Leon software: the max number of loop is yielded by preprocessor constant MAX_IOCTL_ACK_CNT. This avoids handing the kernel with an infinite polling loop. An exception is the case of clearing the bss: it takes time to Leon3 to perform this operation, so we poll te acknowledge with no limit */ #define MAX_IOCTL_ACK_CNT 500 update_firmware_command = *((unsigned int*)arg); switch (update_firmware_command) { case UPDATE_FIRMWARE_TRANSFER_BLOCK: update_firmware_address = ((unsigned int*)arg)[1]; update_firmware_length = ((unsigned int*)arg)[2]; update_firmware_ubuffer = (unsigned int*)((unsigned int*)arg)[3]; update_firmware_kbuffer = (unsigned int*)kmalloc(update_firmware_length * 4 /* 4 because kmalloc expects bytes */, GFP_KERNEL); if (!update_firmware_kbuffer) { printk("[openair][IOCTL] Could NOT allocate %u bytes from kernel memory (kmalloc failed).\n", lendian_length * 4); return -1; break; } // update all cards at the same time for (c=0; c<number_of_cards; c++) { fw_block = (unsigned int *)exmimo_pci_kvirt[c].firmware_block_ptr; /* Copy the data block from user space */ fw_block[0] = update_firmware_address; fw_block[1] = update_firmware_length; //printk("copy_from_user %p => %p (pci) => fw[0]=fw_addr=%08x (ahb), fw[1]=fw_length=%d DW\n",update_firmware_ubuffer,&fw_block[16],update_firmware_address,update_firmware_length); tmp = copy_from_user(update_firmware_kbuffer, update_firmware_ubuffer, /* from */ update_firmware_length * 4 /* in bytes */ ); if (tmp) { printk("[openair][IOCTL] Could NOT copy all data from user-space to kernel-space (%d bytes remained uncopied).\n", tmp); return -1; } // pci_map_single(pdev[0],(void*)fw_block, update_firmware_length*4,PCI_DMA_BIDIRECTIONAL); for (i=0; i<update_firmware_length; i++) { fw_block[32+i] = ((unsigned int *)update_firmware_kbuffer)[i]; // Endian flipping is done in user-space so undo it invert4(fw_block[32+i]); } exmimo_send_pccmd(c, EXMIMO_FW_INIT); printk("[openair][IOCTL] card%d: ok %u DW copied to address 0x%08x (fw_block_ptr %p)\n", c, fw_block[1], fw_block[0],fw_block); } kfree(update_firmware_kbuffer); /* for (i=0; i<update_firmware_length;i++) { printk("%08x ", fw_block[32+i]); if ((i % 8) == 7) printk("\n"); }*/ break; case UPDATE_FIRMWARE_CLEAR_BSS: update_firmware_bss_address = ((unsigned int*)arg)[1]; update_firmware_bss_size = ((unsigned int*)arg)[2]; sparc_tmp_0 = update_firmware_bss_address; sparc_tmp_1 = update_firmware_bss_size; printk("[openair][IOCTL] ok asked Leon to clear .bss (addr 0x%08x, size %d bytes)\n", sparc_tmp_0, sparc_tmp_1); // update all cards at the same time for (c=0; c<number_of_cards; c++) { fw_block = (unsigned int *)exmimo_pci_kvirt[c].firmware_block_ptr; fw_block[0] = update_firmware_bss_address; fw_block[1] = update_firmware_bss_size; exmimo_send_pccmd(c, EXMIMO_FW_CLEAR_BSS); } break; case UPDATE_FIRMWARE_START_EXECUTION: update_firmware_start_address = ((unsigned int*)arg)[1]; update_firmware_stack_pointer = ((unsigned int*)arg)[2]; sparc_tmp_0 = update_firmware_start_address; sparc_tmp_1 = update_firmware_stack_pointer; printk("[openair][IOCTL] ok asked Leon to set stack and start execution (addr 0x%08x, stackptr %08x)\n", sparc_tmp_0, sparc_tmp_1); for (c=0; c<number_of_cards; c++) { fw_block = (unsigned int *)exmimo_pci_kvirt[c].firmware_block_ptr; fw_block[0] = update_firmware_start_address; fw_block[1] = update_firmware_stack_pointer; exmimo_send_pccmd(c, EXMIMO_FW_START_EXEC); msleep(10); exmimo_firmware_init(c); } break; case UPDATE_FIRMWARE_FORCE_REBOOT: printk("[openair][IOCTL] ok asked Leon to reboot.\n"); for (c=0; c<number_of_cards; c++) { exmimo_send_pccmd(c, EXMIMO_REBOOT); exmimo_firmware_init(c); } break; case UPDATE_FIRMWARE_TEST_GOK: printk("[openair][IOCTL] TEST_GOK command doesn't work with ExpressMIMO. Ignored.\n"); break; default: return -1; break; } break; default: //---------------------- printk("[IOCTL] openair_IOCTL unknown: basecmd = %i (cmd=%X)\n", _IOC_NR(cmd), cmd ); return -EPERM; break; } return 0; }