Ignore:
Timestamp:
Jul 13, 2017, 12:42:33 PM (7 years ago)
Author:
max@…
Message:

rename soclib->apic

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/hal/x86_64/drivers/pic_apic.h

    r196 r197  
    11/*
    2  * soclib_pic.c - soclib PIC driver definition.
     2 * pic_apic.c - APIC PIC driver definitions
    33 *
    4  * Author  Alain Greiner (2016)
    5  *
    6  * Copyright (c) UPMC Sorbonne Universites
     4 * Copyright (c) 2017 Maxime Villard
    75 *
    86 * This file is part of ALMOS-MKH.
     
    1816 *
    1917 * You should have received a copy of the GNU General Public License
    20  * along with ALMOS-kernel; if not, write to the Free Software Foundation,
     18 * along with ALMOS-MKH; if not, write to the Free Software Foundation,
    2119 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
    2220 */
    2321
    24 #ifndef _SOCLIB_IOPIC_H_
    25 #define _SOCLIB_IOPIC_H_
     22#ifndef _PIC_APIC_H_
     23#define _PIC_APIC_H_
    2624
    2725#include <hal_types.h>
    2826
    29 void soclib_pic_init( chdev_t * pic );
    30 void soclib_pic_extend_init( uint32_t * xcu_base );
    31 void soclib_pic_bind_irq( lid_t     lid,
     27void pic_apic_init( chdev_t * pic );
     28void pic_apic_extend_init( uint32_t * xcu_base );
     29void pic_apic_bind_irq( lid_t     lid,
    3230                          chdev_t * src_chdev );
    33 void soclib_pic_enable_irq( lid_t     lid,
     31void pic_apic_enable_irq( lid_t     lid,
    3432                            chdev_t * src_chdev );
    35 void soclib_pic_disable_irq( lid_t     lid,
     33void pic_apic_disable_irq( lid_t     lid,
    3634                             chdev_t * src_chdev );
    37 void soclib_pic_enable_timer( uint32_t period );
     35void pic_apic_enable_timer( uint32_t period );
    3836
    39 void soclib_pic_send_ipi( cxy_t    cxy,
     37void pic_apic_send_ipi( cxy_t    cxy,
    4038                          lid_t    lid );
    4139
    42 #endif  /* _SOCLIB_IOPIC_H_ */
     40#endif  /* _PIC_APIC_H_ */
Note: See TracChangeset for help on using the changeset viewer.