Files
linux-apfs/include/asm-powerpc/ibmebus.h
T

61 lines
2.2 KiB
C
Raw Normal View History

2005-11-16 08:56:43 +01:00
/*
* IBM PowerPC eBus Infrastructure Support.
*
* Copyright (c) 2005 IBM Corporation
* Joachim Fenkes <fenkes@de.ibm.com>
2005-11-16 08:56:43 +01:00
* Heiko J Schick <schickhj@de.ibm.com>
2007-03-09 18:56:46 +01:00
*
2005-11-16 08:56:43 +01:00
* All rights reserved.
*
2007-03-09 18:56:46 +01:00
* This source code is distributed under a dual license of GPL v2.0 and OpenIB
* BSD.
2005-11-16 08:56:43 +01:00
*
* OpenIB BSD License
*
2007-03-09 18:56:46 +01: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 08:56:43 +01:00
*
2007-03-09 18:56:46 +01:00
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
2005-11-16 08:56:43 +01:00
*
2007-03-09 18:56:46 +01: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 08:56:43 +01:00
* and/or other materials
2007-03-09 18:56:46 +01:00
* provided with the distribution.
2005-11-16 08:56:43 +01:00
*
2007-03-09 18:56:46 +01: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 08:56:43 +01: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 18:56:46 +01: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 08:56:43 +01:00
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _ASM_EBUS_H
#define _ASM_EBUS_H
#ifdef __KERNEL__
2005-11-16 08:56:43 +01:00
#include <linux/device.h>
#include <linux/interrupt.h>
#include <linux/mod_devicetable.h>
#include <linux/of_device.h>
#include <linux/of_platform.h>
2005-11-16 08:56:43 +01:00
extern struct bus_type ibmebus_bus_type;
int ibmebus_register_driver(struct of_platform_driver *drv);
void ibmebus_unregister_driver(struct of_platform_driver *drv);
2005-11-16 08:56:43 +01:00
int ibmebus_request_irq(u32 ist, irq_handler_t handler,
unsigned long irq_flags, const char *devname,
2005-11-16 08:56:43 +01:00
void *dev_id);
void ibmebus_free_irq(u32 ist, void *dev_id);
2005-11-16 08:56:43 +01:00
#endif /* __KERNEL__ */
2005-11-16 08:56:43 +01:00
#endif /* _ASM_IBMEBUS_H */