[3] | 1 | /* |
---|
| 2 | * dev_dma.c - DMA (Interrupt Controler Unit) generic device API implementation. |
---|
| 3 | * |
---|
[437] | 4 | * Authors Alain Greiner (2016,2017,2018) |
---|
[3] | 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 7 | * |
---|
| 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTDMALAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
[457] | 24 | #include <hal_kernel_types.h> |
---|
[3] | 25 | #include <hal_special.h> |
---|
| 26 | #include <chdev.h> |
---|
| 27 | #include <thread.h> |
---|
| 28 | #include <cluster.h> |
---|
| 29 | #include <printk.h> |
---|
| 30 | #include <memcpy.h> |
---|
| 31 | #include <dev_dma.h> |
---|
[261] | 32 | #include <hal_drivers.h> |
---|
[3] | 33 | |
---|
| 34 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
| 35 | // Extern global variables |
---|
| 36 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
| 37 | |
---|
| 38 | extern chdev_directory_t chdev_dir; // allocated in kernel_init.c |
---|
| 39 | |
---|
[238] | 40 | ////////////////////////////////// |
---|
| 41 | void dev_dma_init( chdev_t * dma ) |
---|
[3] | 42 | { |
---|
[238] | 43 | // get implementation & channel from DMA dma descriptor |
---|
| 44 | uint32_t impl = dma->impl; |
---|
| 45 | uint32_t channel = dma->channel; |
---|
[3] | 46 | |
---|
[238] | 47 | // set dma name |
---|
[408] | 48 | snprintf( dma->name , 16 , "dma%d_%x" , channel , local_cxy ); |
---|
[23] | 49 | |
---|
[261] | 50 | // call driver init function |
---|
| 51 | hal_drivers_dma_init( dma, impl ); |
---|
[3] | 52 | |
---|
[188] | 53 | // bind IRQ to the core defined by the DMA channel |
---|
[238] | 54 | dev_pic_bind_irq( channel , dma ); |
---|
[3] | 55 | |
---|
[188] | 56 | // enable IRQ |
---|
[238] | 57 | dev_pic_enable_irq( channel, XPTR( local_cxy , dma ) ); |
---|
[3] | 58 | |
---|
| 59 | // create server thread |
---|
| 60 | thread_t * new_thread; |
---|
| 61 | error_t error; |
---|
| 62 | |
---|
| 63 | error = thread_kernel_create( &new_thread, |
---|
| 64 | THREAD_DEV, |
---|
| 65 | &chdev_sequencial_server, |
---|
[238] | 66 | dma, |
---|
[3] | 67 | cluster_select_local_core() ); |
---|
| 68 | if( error ) |
---|
| 69 | { |
---|
[492] | 70 | assert( false , "cannot create server thread" ); |
---|
[3] | 71 | } |
---|
| 72 | |
---|
[408] | 73 | // initialises server field in chdev descriptor |
---|
[238] | 74 | dma->server = new_thread; |
---|
[408] | 75 | |
---|
| 76 | // initializes chdev field in thread descriptor |
---|
| 77 | new_thread->chdev = dma; |
---|
[3] | 78 | |
---|
[408] | 79 | // unblock server thread |
---|
[3] | 80 | thread_unblock( XPTR( local_cxy , new_thread ) , THREAD_BLOCKED_GLOBAL ); |
---|
[188] | 81 | |
---|
[3] | 82 | } // dev_dma_init() |
---|
| 83 | |
---|
| 84 | //////////////////////////////////////////////// |
---|
| 85 | error_t dev_dma_remote_memcpy( xptr_t dst_xp, |
---|
| 86 | xptr_t src_xp, |
---|
| 87 | uint32_t size ) |
---|
| 88 | { |
---|
| 89 | thread_t * this = CURRENT_THREAD; |
---|
| 90 | |
---|
[437] | 91 | #if CONGIG_DEBUG_DEV_DMA |
---|
| 92 | uint32_t cycle = (uint32_t)hal_get_cycles(); |
---|
| 93 | if( CONGIG_DEBUG_DEV_DMA < cycle ) |
---|
| 94 | printk("\n[DBG] %s : thread %x enters / dst %l / src %l / size = %x\n", |
---|
| 95 | __FUNCTION__ , this, dst_xp, src_xp, size ); |
---|
| 96 | #endif |
---|
[3] | 97 | |
---|
| 98 | // select DMA channel corresponding to core lid |
---|
| 99 | uint32_t channel = this->core->lid; |
---|
| 100 | |
---|
| 101 | // get extended pointer on selected DMA chdev descriptor |
---|
| 102 | xptr_t dev_xp = chdev_dir.dma[channel]; |
---|
| 103 | |
---|
[492] | 104 | assert( (dev_xp != XPTR_NULL) , "undefined DMA chdev descriptor" ); |
---|
[3] | 105 | |
---|
| 106 | // register command in calling thread descriptor |
---|
[279] | 107 | this->dma_cmd.dev_xp = dev_xp; |
---|
| 108 | this->dma_cmd.dst_xp = dst_xp; |
---|
| 109 | this->dma_cmd.src_xp = src_xp; |
---|
| 110 | this->dma_cmd.size = size; |
---|
[3] | 111 | |
---|
| 112 | // register client thread in waiting queue, activate server thread |
---|
| 113 | // block client thread on THREAD_BLOCKED_IO and deschedule. |
---|
| 114 | // it is re-activated by the ISR signaling IO operation completion. |
---|
[407] | 115 | chdev_register_command( dev_xp ); |
---|
[3] | 116 | |
---|
[437] | 117 | #if CONGIG_DEBUG_DEV_DMA |
---|
| 118 | cycle = (uint32_t)hal_get_cycles(); |
---|
| 119 | if( CONGIG_DEBUG_DEV_DMA < cycle ) |
---|
| 120 | printk("\n[DBG] %s : thread %x exit / dst %l / src %l / size = %x\n", |
---|
| 121 | __FUNCTION__ , this, dst_xp, src_xp, size ); |
---|
| 122 | #endif |
---|
[3] | 123 | |
---|
| 124 | // return I/O operation status from calling thread descriptor |
---|
[279] | 125 | return this->dma_cmd.error; |
---|
[3] | 126 | |
---|
| 127 | } // dev_dma_remote_memcpy() |
---|
| 128 | |
---|