2005-11-16 10:56:43 +03:00
/*
* IBM PowerPC eBus Infrastructure Support .
*
* Copyright ( c ) 2005 IBM Corporation
2007-03-09 21:00:32 +03:00
* Joachim Fenkes < fenkes @ de . ibm . com >
2005-11-16 10:56:43 +03:00
* Heiko J Schick < schickhj @ de . ibm . com >
2007-03-09 20:56:46 +03:00
*
2005-11-16 10:56:43 +03:00
* All rights reserved .
*
2007-03-09 20:56:46 +03:00
* This source code is distributed under a dual license of GPL v2 .0 and OpenIB
* BSD .
2005-11-16 10:56:43 +03:00
*
* OpenIB BSD License
*
2007-03-09 20:56:46 +03:00
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions are met :
2005-11-16 10:56:43 +03:00
*
2007-03-09 20:56:46 +03:00
* Redistributions of source code must retain the above copyright notice , this
* list of conditions and the following disclaimer .
2005-11-16 10:56:43 +03:00
*
2007-03-09 20:56:46 +03:00
* Redistributions in binary form must reproduce the above copyright notice ,
* this list of conditions and the following disclaimer in the documentation
2005-11-16 10:56:43 +03:00
* and / or other materials
2007-03-09 20:56:46 +03:00
* provided with the distribution .
2005-11-16 10:56:43 +03:00
*
2007-03-09 20:56:46 +03:00
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS " AS IS "
* AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT , INDIRECT , INCIDENTAL , SPECIAL , EXEMPLARY , OR
* CONSEQUENTIAL DAMAGES ( INCLUDING , BUT NOT LIMITED TO , PROCUREMENT OF
2005-11-16 10:56:43 +03:00
* SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE , DATA , OR PROFITS ; OR
* BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY , WHETHER
2007-03-09 20:56:46 +03:00
* IN CONTRACT , STRICT LIABILITY , OR TORT ( INCLUDING NEGLIGENCE OR OTHERWISE )
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE , EVEN IF ADVISED OF THE
2005-11-16 10:56:43 +03:00
* POSSIBILITY OF SUCH DAMAGE .
*/
# ifndef _ASM_EBUS_H
# define _ASM_EBUS_H
2005-12-17 00:43:46 +03:00
# ifdef __KERNEL__
2005-11-16 10:56:43 +03:00
# include <linux/device.h>
# include <linux/interrupt.h>
# include <linux/mod_devicetable.h>
2007-09-26 13:45:51 +04:00
# include <linux/of_device.h>
# include <linux/of_platform.h>
2005-11-16 10:56:43 +03:00
extern struct bus_type ibmebus_bus_type ;
2007-09-26 13:45:51 +04:00
int ibmebus_register_driver ( struct of_platform_driver * drv ) ;
void ibmebus_unregister_driver ( struct of_platform_driver * drv ) ;
2005-11-16 10:56:43 +03:00
2007-09-26 13:45:51 +04:00
int ibmebus_request_irq ( u32 ist , irq_handler_t handler ,
unsigned long irq_flags , const char * devname ,
2005-11-16 10:56:43 +03:00
void * dev_id ) ;
2007-09-26 13:45:51 +04:00
void ibmebus_free_irq ( u32 ist , void * dev_id ) ;
2005-11-16 10:56:43 +03:00
2005-12-17 00:43:46 +03:00
# endif /* __KERNEL__ */
2005-11-16 10:56:43 +03:00
# endif /* _ASM_IBMEBUS_H */