1 | /* |
---|
2 | * dev_dma.c - DMA (Interrupt Controler Unit) generic device API implementation. |
---|
3 | * |
---|
4 | * Authors Alain Greiner (2017) |
---|
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 | |
---|
24 | #include <hal_types.h> |
---|
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 <spinlock.h> |
---|
32 | #include <dev_dma.h> |
---|
33 | #include <hal_drivers.h> |
---|
34 | |
---|
35 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
36 | // Extern global variables |
---|
37 | ///////////////////////////////////////////////////////////////////////////////////////// |
---|
38 | |
---|
39 | extern chdev_directory_t chdev_dir; // allocated in kernel_init.c |
---|
40 | |
---|
41 | ////////////////////////////////// |
---|
42 | void dev_dma_init( chdev_t * dma ) |
---|
43 | { |
---|
44 | // get implementation & channel from DMA dma descriptor |
---|
45 | uint32_t impl = dma->impl; |
---|
46 | uint32_t channel = dma->channel; |
---|
47 | |
---|
48 | // set dma name |
---|
49 | snprintf( dma->name , 16 , "dma_%d_%x" , channel , local_cxy ); |
---|
50 | |
---|
51 | // call driver init function |
---|
52 | hal_drivers_dma_init( dma, impl ); |
---|
53 | |
---|
54 | // bind IRQ to the core defined by the DMA channel |
---|
55 | dev_pic_bind_irq( channel , dma ); |
---|
56 | |
---|
57 | // enable IRQ |
---|
58 | dev_pic_enable_irq( channel, XPTR( local_cxy , dma ) ); |
---|
59 | |
---|
60 | // create server thread |
---|
61 | thread_t * new_thread; |
---|
62 | error_t error; |
---|
63 | |
---|
64 | error = thread_kernel_create( &new_thread, |
---|
65 | THREAD_DEV, |
---|
66 | &chdev_sequencial_server, |
---|
67 | dma, |
---|
68 | cluster_select_local_core() ); |
---|
69 | if( error ) |
---|
70 | { |
---|
71 | assert( false , __FUNCTION__ , "cannot create server thread" ); |
---|
72 | } |
---|
73 | |
---|
74 | // initialises server field in DMA chdev descriptor |
---|
75 | dma->server = new_thread; |
---|
76 | |
---|
77 | // start server thread |
---|
78 | thread_block( new_thread , THREAD_BLOCKED_DEV_QUEUE ); |
---|
79 | thread_unblock( XPTR( local_cxy , new_thread ) , THREAD_BLOCKED_GLOBAL ); |
---|
80 | |
---|
81 | } // dev_dma_init() |
---|
82 | |
---|
83 | //////////////////////////////////////////////// |
---|
84 | error_t dev_dma_remote_memcpy( xptr_t dst_xp, |
---|
85 | xptr_t src_xp, |
---|
86 | uint32_t size ) |
---|
87 | { |
---|
88 | thread_t * this = CURRENT_THREAD; |
---|
89 | |
---|
90 | dma_dmsg("\n[INFO] %s : enters for thread %x / dst = %l /src = %l / size = %x\n", |
---|
91 | __FUNCTION__ , this->trdid , dst_xp , src_xp , size ); |
---|
92 | |
---|
93 | // select DMA channel corresponding to core lid |
---|
94 | uint32_t channel = this->core->lid; |
---|
95 | |
---|
96 | // get extended pointer on selected DMA chdev descriptor |
---|
97 | xptr_t dev_xp = chdev_dir.dma[channel]; |
---|
98 | |
---|
99 | assert( (dev_xp != XPTR_NULL) , __FUNCTION__ , "undefined DMA chdev descriptor" ); |
---|
100 | |
---|
101 | // register command in calling thread descriptor |
---|
102 | this->dma_cmd.dev_xp = dev_xp; |
---|
103 | this->dma_cmd.dst_xp = dst_xp; |
---|
104 | this->dma_cmd.src_xp = src_xp; |
---|
105 | this->dma_cmd.size = size; |
---|
106 | |
---|
107 | // register client thread in waiting queue, activate server thread |
---|
108 | // block client thread on THREAD_BLOCKED_IO and deschedule. |
---|
109 | // it is re-activated by the ISR signaling IO operation completion. |
---|
110 | chdev_register_command( dev_xp , this ); |
---|
111 | |
---|
112 | dma_dmsg("\n[INFO] %s : completes for thread %x / error = %d\n", |
---|
113 | __FUNCTION__ , this->trdid , this->dma_cmd.error ); |
---|
114 | |
---|
115 | // return I/O operation status from calling thread descriptor |
---|
116 | return this->dma_cmd.error; |
---|
117 | |
---|
118 | } // dev_dma_remote_memcpy() |
---|
119 | |
---|