source: trunk/hal/x86_64/drivers/pic_apic.c @ 197

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

rename soclib->apic

File size: 1.6 KB
RevLine 
[75]1/*
[197]2 * pic_apic.c - APIC PIC driver implementation
[75]3 *
[197]4 * Copyright (c) 2017 Maxime Villard
[75]5 *
6 * This file is part of ALMOS-MKH.
7 *
[197]8 * ALMOS-MKH is free software; you can redistribute it and/or modify it
[75]9 * under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2.0 of the License.
11 *
[197]12 * ALMOS-MKH is distributed in the hope that it will be useful, but
[75]13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
[197]18 * along with ALMOS-MKH; if not, write to the Free Software Foundation,
[75]19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <hal_types.h>
23#include <chdev.h>
[197]24#include <pic_apic.h>
[75]25#include <errno.h>
26#include <string.h>
27#include <vfs.h>
28
[197]29void pic_apic_init( chdev_t * pic )
[75]30{
[196]31        x86_panic((char *)__func__);
32}
[75]33
[197]34void pic_apic_extend_init( uint32_t * xcu_base )
[196]35{
36        x86_panic((char *)__func__);
[75]37}
38
[197]39void pic_apic_bind_irq( lid_t     lid,
[196]40                          chdev_t * src_chdev )
[75]41{
[196]42        x86_panic((char *)__func__);
43}
[75]44
[197]45void pic_apic_enable_irq( lid_t     lid,
[196]46                            chdev_t * src_chdev )
47{
48        x86_panic((char *)__func__);
[75]49}
50
[197]51void pic_apic_disable_irq( lid_t     lid,
[196]52                             chdev_t * src_chdev )
[75]53{
[196]54        x86_panic((char *)__func__);
55}
[75]56
[197]57void pic_apic_enable_timer( uint32_t period )
[196]58{
59        x86_panic((char *)__func__);
[75]60}
61
[197]62void pic_apic_send_ipi( cxy_t    cxy,
[196]63                          lid_t    lid )
[75]64{
[196]65        x86_panic((char *)__func__);
[75]66}
Note: See TracBrowser for help on using the repository browser.