source: trunk/kernel/devices/dev_pic.c @ 214

Last change on this file since 214 was 206, checked in by max@…, 7 years ago

re-hide

File size: 4.6 KB
Line 
1/*
2 * dev_pic.c - PIC (External Interrupt Controler) generic device API implementation.
3 *
4 * Authors   Alain Greiner  (2016)
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 PARTPICLAR 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 <printk.h>
28#include <hal_drivers.h>
29#include <dev_pic.h>
30#include <cluster.h>
31
32/////////////////////////////////////////////////////////////////////////////////////////
33// Extern global variables
34/////////////////////////////////////////////////////////////////////////////////////////
35
36extern chdev_directory_t  chdev_dir;         // allocated in kernel_init.c
37
38///////////////////////////////////
39void dev_pic_init( chdev_t  * pic )
40{
41    // get implementation
42    uint32_t impl = pic->impl;
43
44    // set chdev name
45    strcpy( pic->name , "pic" );
46
47    // call the relevant driver init function,
48    // and register commands in PIC device extension
49    if( impl == IMPL_PIC_SCL )
50    {
51        // call the implementation-specific PIC driver
52        hal_drivers_pic_init(pic);
53    }
54    else if( impl == IMPL_PIC_I86 )
55    {
56        assert( false , __FUNCTION__ , "missing implementation for X86\n" );
57    }
58    else
59    {
60        assert( false , __FUNCTION__ , "undefined PIC device implementation" );
61    }
62} // end dev_pic_init()
63
64/////////////////////////////////////////////////
65void dev_pic_extend_init( uint32_t * lapic_base )
66{
67    // get pointer on PIC chdev
68    chdev_t * pic_ptr = (chdev_t *)GET_PTR( chdev_dir.pic );
69    cxy_t     pic_cxy = GET_CXY( chdev_dir.pic );
70
71    // get pointer on extend_init function
72    extend_init_t * f = hal_remote_lpt( XPTR( pic_cxy , &pic_ptr->ext.pic.extend_init ) ); 
73
74    // call relevant driver function
75    f( lapic_base );
76}
77
78/////////////////////////////////////
79void dev_pic_bind_irq( lid_t     lid,
80                       chdev_t * src_chdev )
81{
82    // get pointer on PIC chdev
83    chdev_t * pic_ptr = (chdev_t *)GET_PTR( chdev_dir.pic );
84    cxy_t     pic_cxy = GET_CXY( chdev_dir.pic );
85
86    // get pointer on bind_irq function
87    bind_irq_t * f = hal_remote_lpt( XPTR( pic_cxy , &pic_ptr->ext.pic.bind_irq ) );
88
89    // call relevant driver function
90    f( lid , src_chdev );
91}
92
93/////////////////////////////////////
94void dev_pic_enable_irq( lid_t   lid,
95                         xptr_t  src_chdev_xp )
96{
97    // get pointer on PIC chdev
98    chdev_t * pic_ptr = (chdev_t *)GET_PTR( chdev_dir.pic );
99    cxy_t     pic_cxy = GET_CXY( chdev_dir.pic );
100
101    // get pointer on enable_irq function
102    enable_irq_t * f = hal_remote_lpt( XPTR( pic_cxy , &pic_ptr->ext.pic.enable_irq ) );
103
104    // call relevant driver function
105    f( lid , src_chdev_xp );
106}
107
108//////////////////////////////////////
109void dev_pic_disable_irq( lid_t   lid,
110                          xptr_t  src_chdev_xp )
111{
112    // get pointer on PIC chdev
113    chdev_t * pic_ptr = (chdev_t *)GET_PTR( chdev_dir.pic );
114    cxy_t     pic_cxy = GET_CXY( chdev_dir.pic );
115
116    // get pointer on disable_irq function
117    disable_irq_t * f = hal_remote_lpt( XPTR( pic_cxy , &pic_ptr->ext.pic.disable_irq ) );
118
119    // call relevant driver function
120    f( lid , src_chdev_xp );
121}
122
123////////////////////////////////////////////
124void dev_pic_enable_timer( uint32_t period )
125{
126    // get pointer on PIC chdev
127    chdev_t * pic_ptr = (chdev_t *)GET_PTR( chdev_dir.pic );
128    cxy_t     pic_cxy = GET_CXY( chdev_dir.pic );
129
130    // get pointer on enable_timer function
131    enable_timer_t * f = hal_remote_lpt( XPTR( pic_cxy , &pic_ptr->ext.pic.enable_timer ) );
132
133    // call relevant driver function
134    f( period );
135}
136
137//////////////////////////////////
138void dev_pic_send_ipi( cxy_t  cxy,
139                       lid_t  lid )
140{
141    // get pointer on PIC chdev
142    chdev_t * pic_ptr = (chdev_t *)GET_PTR( chdev_dir.pic );
143    cxy_t     pic_cxy = GET_CXY( chdev_dir.pic );
144
145    // get pointer on send_ipi function
146    send_ipi_t * f = hal_remote_lpt( XPTR( pic_cxy , &pic_ptr->ext.pic.send_ipi ) );
147
148    // call relevant driver function
149    f( cxy , lid );
150}
151
Note: See TracBrowser for help on using the repository browser.