freebsd compat. layer: instead of disabling the IRQ, disable the device's interrupts on real interrupt request as suggested by Travis. This solves potential issues with shared IRQs. The check & disable interrupts function is part of the required glue code.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21045 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,3 +1,58 @@
|
|||||||
#include <sys/bus.h>
|
#include <sys/bus.h>
|
||||||
|
|
||||||
|
#include <net/ethernet.h>
|
||||||
|
|
||||||
|
#include <dev/le/lancereg.h>
|
||||||
|
#include <dev/le/lancevar.h>
|
||||||
|
#include <dev/le/am79900var.h>
|
||||||
|
|
||||||
|
/* from if_le_pci.c */
|
||||||
|
#define PCNET_PCI_RDP 0x10
|
||||||
|
#define PCNET_PCI_RAP 0x12
|
||||||
|
|
||||||
|
struct le_pci_softc {
|
||||||
|
struct am79900_softc sc_am79900; /* glue to MI code */
|
||||||
|
|
||||||
|
int sc_rrid;
|
||||||
|
struct resource *sc_rres;
|
||||||
|
bus_space_tag_t sc_regt;
|
||||||
|
bus_space_handle_t sc_regh;
|
||||||
|
|
||||||
|
int sc_irid;
|
||||||
|
struct resource *sc_ires;
|
||||||
|
void *sc_ih;
|
||||||
|
|
||||||
|
bus_dma_tag_t sc_pdmat;
|
||||||
|
bus_dma_tag_t sc_dmat;
|
||||||
|
bus_dmamap_t sc_dmam;
|
||||||
|
};
|
||||||
|
|
||||||
HAIKU_FBSD_DRIVER_GLUE(pcnet, le, pci)
|
HAIKU_FBSD_DRIVER_GLUE(pcnet, le, pci)
|
||||||
|
|
||||||
|
int HAIKU_CHECK_DISABLE_INTERRUPTS(device_t dev) {
|
||||||
|
struct le_pci_softc *lesc = (struct le_pci_softc *)device_get_softc(dev);
|
||||||
|
cpu_status status;
|
||||||
|
uint16_t value;
|
||||||
|
|
||||||
|
HAIKU_INTR_REGISTER_ENTER(status);
|
||||||
|
|
||||||
|
/* get current flags */
|
||||||
|
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, LE_CSR0);
|
||||||
|
bus_space_barrier(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, 2,
|
||||||
|
BUS_SPACE_BARRIER_WRITE);
|
||||||
|
value = bus_space_read_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RDP);
|
||||||
|
|
||||||
|
/* is there a pending interrupt? */
|
||||||
|
if (value & LE_C0_INTR) {
|
||||||
|
/* set the new flags, disable interrupts */
|
||||||
|
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, LE_CSR0);
|
||||||
|
bus_space_barrier(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, 2,
|
||||||
|
BUS_SPACE_BARRIER_WRITE);
|
||||||
|
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RDP,
|
||||||
|
value & ~LE_C0_INEA);
|
||||||
|
}
|
||||||
|
|
||||||
|
HAIKU_INTR_REGISTER_LEAVE(status);
|
||||||
|
|
||||||
|
return value & LE_C0_INTR;
|
||||||
|
}
|
||||||
|
|||||||
@@ -195,22 +195,35 @@ static void
|
|||||||
le_pci_wrcsr(struct lance_softc *sc, uint16_t port, uint16_t val)
|
le_pci_wrcsr(struct lance_softc *sc, uint16_t port, uint16_t val)
|
||||||
{
|
{
|
||||||
struct le_pci_softc *lesc = (struct le_pci_softc *)sc;
|
struct le_pci_softc *lesc = (struct le_pci_softc *)sc;
|
||||||
|
cpu_status status = 0;
|
||||||
|
|
||||||
|
if (port == LE_CSR0)
|
||||||
|
HAIKU_INTR_REGISTER_ENTER(status);
|
||||||
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, port);
|
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, port);
|
||||||
bus_space_barrier(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, 2,
|
bus_space_barrier(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, 2,
|
||||||
BUS_SPACE_BARRIER_WRITE);
|
BUS_SPACE_BARRIER_WRITE);
|
||||||
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RDP, val);
|
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RDP, val);
|
||||||
|
if (port == LE_CSR0)
|
||||||
|
HAIKU_INTR_REGISTER_LEAVE(status);
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint16_t
|
static uint16_t
|
||||||
le_pci_rdcsr(struct lance_softc *sc, uint16_t port)
|
le_pci_rdcsr(struct lance_softc *sc, uint16_t port)
|
||||||
{
|
{
|
||||||
struct le_pci_softc *lesc = (struct le_pci_softc *)sc;
|
struct le_pci_softc *lesc = (struct le_pci_softc *)sc;
|
||||||
|
cpu_status status = 0;
|
||||||
|
uint16_t value;
|
||||||
|
|
||||||
|
if (port == LE_CSR0)
|
||||||
|
HAIKU_INTR_REGISTER_ENTER(status);
|
||||||
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, port);
|
bus_space_write_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, port);
|
||||||
bus_space_barrier(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, 2,
|
bus_space_barrier(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RAP, 2,
|
||||||
BUS_SPACE_BARRIER_WRITE);
|
BUS_SPACE_BARRIER_WRITE);
|
||||||
return (bus_space_read_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RDP));
|
value = bus_space_read_2(lesc->sc_regt, lesc->sc_regh, PCNET_PCI_RDP);
|
||||||
|
if (port == LE_CSR0)
|
||||||
|
HAIKU_INTR_REGISTER_LEAVE(status);
|
||||||
|
|
||||||
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|||||||
@@ -31,12 +31,11 @@ struct resource {
|
|||||||
|
|
||||||
|
|
||||||
struct internal_intr {
|
struct internal_intr {
|
||||||
|
device_t dev;
|
||||||
driver_intr_t handler;
|
driver_intr_t handler;
|
||||||
void *arg;
|
void *arg;
|
||||||
int irq;
|
int irq;
|
||||||
|
|
||||||
void *context;
|
|
||||||
|
|
||||||
thread_id thread;
|
thread_id thread;
|
||||||
sem_id sem;
|
sem_id sem;
|
||||||
};
|
};
|
||||||
@@ -176,11 +175,13 @@ static int32
|
|||||||
intr_wrapper(void *data)
|
intr_wrapper(void *data)
|
||||||
{
|
{
|
||||||
struct internal_intr *intr = data;
|
struct internal_intr *intr = data;
|
||||||
driver_printf("in interrupt handler.\n");
|
|
||||||
|
|
||||||
disable_io_interrupt_handler(intr->context, B_IN_INTERRUPT_CONTEXT);
|
device_printf(intr->dev, "in interrupt handler.\n");
|
||||||
|
|
||||||
|
if (!HAIKU_CHECK_DISABLE_INTERRUPTS(intr->dev))
|
||||||
|
return B_UNHANDLED_INTERRUPT;
|
||||||
|
|
||||||
release_sem_etc(intr->sem, 1, B_DO_NOT_RESCHEDULE);
|
release_sem_etc(intr->sem, 1, B_DO_NOT_RESCHEDULE);
|
||||||
|
|
||||||
return B_INVOKE_SCHEDULER;
|
return B_INVOKE_SCHEDULER;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -192,19 +193,15 @@ intr_handler(void *data)
|
|||||||
status_t status;
|
status_t status;
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
enable_io_interrupt_handler(intr->context);
|
|
||||||
|
|
||||||
status = acquire_sem(intr->sem);
|
status = acquire_sem(intr->sem);
|
||||||
if (status < B_OK)
|
if (status < B_OK)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
driver_printf("in soft interrupt handler.\n");
|
device_printf(intr->dev, "in soft interrupt handler.\n");
|
||||||
|
|
||||||
intr->handler(intr->arg);
|
intr->handler(intr->arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
disable_io_interrupt_handler(intr->context, 0);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -215,10 +212,6 @@ free_internal_intr(struct internal_intr *intr)
|
|||||||
status_t status;
|
status_t status;
|
||||||
delete_sem(intr->sem);
|
delete_sem(intr->sem);
|
||||||
wait_for_thread(intr->thread, &status);
|
wait_for_thread(intr->thread, &status);
|
||||||
|
|
||||||
if (intr->context)
|
|
||||||
delete_io_interrupt_handler(intr->context);
|
|
||||||
|
|
||||||
free(intr);
|
free(intr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -234,11 +227,10 @@ bus_setup_intr(device_t dev, struct resource *res, int flags,
|
|||||||
char semName[64];
|
char semName[64];
|
||||||
status_t status;
|
status_t status;
|
||||||
|
|
||||||
/* status_t status; */
|
|
||||||
|
|
||||||
if (intr == NULL)
|
if (intr == NULL)
|
||||||
return B_NO_MEMORY;
|
return B_NO_MEMORY;
|
||||||
|
|
||||||
|
intr->dev = dev;
|
||||||
intr->handler = handler;
|
intr->handler = handler;
|
||||||
intr->arg = arg;
|
intr->arg = arg;
|
||||||
intr->irq = res->handle;
|
intr->irq = res->handle;
|
||||||
@@ -261,9 +253,7 @@ bus_setup_intr(device_t dev, struct resource *res, int flags,
|
|||||||
return B_NO_MEMORY;
|
return B_NO_MEMORY;
|
||||||
}
|
}
|
||||||
|
|
||||||
intr->context = NULL;
|
status = install_io_interrupt_handler(intr->irq, intr_wrapper, intr, 0);
|
||||||
status = create_io_interrupt_handler(intr->irq, intr_wrapper, intr,
|
|
||||||
&intr->context);
|
|
||||||
if (status < B_OK) {
|
if (status < B_OK) {
|
||||||
free_internal_intr(intr);
|
free_internal_intr(intr);
|
||||||
return status;
|
return status;
|
||||||
@@ -281,7 +271,7 @@ int
|
|||||||
bus_teardown_intr(device_t dev, struct resource *res, void *arg)
|
bus_teardown_intr(device_t dev, struct resource *res, void *arg)
|
||||||
{
|
{
|
||||||
struct internal_intr *intr = arg;
|
struct internal_intr *intr = arg;
|
||||||
/* remove_io_interrupt_handler(intr->irq, intr_wrapper, intr); */
|
remove_io_interrupt_handler(intr->irq, intr_wrapper, intr);
|
||||||
free_internal_intr(intr);
|
free_internal_intr(intr);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -296,6 +286,15 @@ bus_generic_detach(device_t dev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#define DEBUG_BUS_SPACE_RW
|
||||||
|
|
||||||
|
#ifdef DEBUG_BUS_SPACE_RW
|
||||||
|
#define TRACE_BUS_SPACE_RW(x) driver_printf x
|
||||||
|
#else
|
||||||
|
#define TRACE_BUS_SPACE_RW(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#define BUS_SPACE_READ(size, type, fun) \
|
#define BUS_SPACE_READ(size, type, fun) \
|
||||||
type bus_space_read_##size(bus_space_tag_t tag, \
|
type bus_space_read_##size(bus_space_tag_t tag, \
|
||||||
bus_space_handle_t handle, bus_size_t offset) \
|
bus_space_handle_t handle, bus_size_t offset) \
|
||||||
@@ -305,6 +304,8 @@ bus_generic_detach(device_t dev)
|
|||||||
value = fun(handle + offset); \
|
value = fun(handle + offset); \
|
||||||
else \
|
else \
|
||||||
value = *(volatile type *)(handle + offset); \
|
value = *(volatile type *)(handle + offset); \
|
||||||
|
TRACE_BUS_SPACE_RW(("bus_space_read_%s(0x%lx, 0x%lx, 0x%lx) = 0x%lx\n", \
|
||||||
|
#size, (uint32)tag, (uint32)handle, (uint32)offset, (uint32)value)); \
|
||||||
return value; \
|
return value; \
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -312,6 +313,8 @@ bus_generic_detach(device_t dev)
|
|||||||
void bus_space_write_##size(bus_space_tag_t tag, \
|
void bus_space_write_##size(bus_space_tag_t tag, \
|
||||||
bus_space_handle_t handle, bus_size_t offset, type value) \
|
bus_space_handle_t handle, bus_size_t offset, type value) \
|
||||||
{ \
|
{ \
|
||||||
|
TRACE_BUS_SPACE_RW(("bus_space_write_%s(0x%lx, 0x%lx, 0x%lx, 0x%lx)\n", \
|
||||||
|
#size, (uint32)tag, (uint32)handle, (uint32)offset, (uint32)value)); \
|
||||||
if (tag == I386_BUS_SPACE_IO) \
|
if (tag == I386_BUS_SPACE_IO) \
|
||||||
fun(value, handle + offset); \
|
fun(value, handle + offset); \
|
||||||
else \
|
else \
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
#define TRACE_PCI(dev, format, args...) do { } while (0)
|
#define TRACE_PCI(dev, format, args...) do { } while (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
status_t init_compat_layer(void);
|
spinlock __haiku_intr_spinlock;
|
||||||
|
|
||||||
struct net_stack_module_info *gStack;
|
struct net_stack_module_info *gStack;
|
||||||
pci_module_info *gPci;
|
pci_module_info *gPci;
|
||||||
@@ -224,10 +224,12 @@ device_delete_child(device_t dev, device_t child)
|
|||||||
int
|
int
|
||||||
printf(const char *format, ...)
|
printf(const char *format, ...)
|
||||||
{
|
{
|
||||||
|
char buf[256];
|
||||||
va_list vl;
|
va_list vl;
|
||||||
va_start(vl, format);
|
va_start(vl, format);
|
||||||
driver_vprintf(format, vl);
|
vsnprintf(buf, sizeof(buf), format, vl);
|
||||||
va_end(vl);
|
va_end(vl);
|
||||||
|
dprintf(buf);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -309,6 +311,7 @@ _kernel_contigfree(void *addr, size_t size)
|
|||||||
status_t
|
status_t
|
||||||
init_compat_layer()
|
init_compat_layer()
|
||||||
{
|
{
|
||||||
|
__haiku_intr_spinlock = 0;
|
||||||
return B_OK;
|
return B_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -74,6 +74,21 @@ extern const char gDriverName[];
|
|||||||
const char **publish_devices() { return (const char **)gDevNameList; } \
|
const char **publish_devices() { return (const char **)gDevNameList; } \
|
||||||
device_hooks *find_device(const char *name) { return &gDeviceHooks; }
|
device_hooks *find_device(const char *name) { return &gDeviceHooks; }
|
||||||
|
|
||||||
|
extern spinlock __haiku_intr_spinlock;
|
||||||
|
extern int __haiku_disable_interrupts(device_t dev);
|
||||||
|
|
||||||
|
#define HAIKU_CHECK_DISABLE_INTERRUPTS __haiku_disable_interrupts
|
||||||
|
|
||||||
|
#define HAIKU_INTR_REGISTER_ENTER(status) do { \
|
||||||
|
status = disable_interrupts(); \
|
||||||
|
acquire_spinlock(&__haiku_intr_spinlock); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
#define HAIKU_INTR_REGISTER_LEAVE(status) do { \
|
||||||
|
release_spinlock(&__haiku_intr_spinlock); \
|
||||||
|
restore_interrupts(status); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
#define DEFINE_CLASS_0(name, driver, methods, size) \
|
#define DEFINE_CLASS_0(name, driver, methods, size) \
|
||||||
driver_t driver = { #name, methods, size }
|
driver_t driver = { #name, methods, size }
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#include <compat/sys/haiku-module.h>
|
#include <compat/sys/haiku-module.h>
|
||||||
|
|
||||||
|
#include <compat/sys/bus.h>
|
||||||
#include <compat/sys/mbuf.h>
|
#include <compat/sys/mbuf.h>
|
||||||
#include <compat/net/ethernet.h>
|
#include <compat/net/ethernet.h>
|
||||||
|
|
||||||
@@ -326,6 +327,8 @@ _fbsd_init_driver(driver_t *driver)
|
|||||||
if (dev == NULL)
|
if (dev == NULL)
|
||||||
return B_NO_MEMORY;
|
return B_NO_MEMORY;
|
||||||
|
|
||||||
|
init_compat_layer();
|
||||||
|
|
||||||
status = init_mutexes();
|
status = init_mutexes();
|
||||||
if (status < B_OK) {
|
if (status < B_OK) {
|
||||||
free_device(dev);
|
free_device(dev);
|
||||||
|
|||||||
@@ -54,6 +54,8 @@ void uninit_mbufs(void);
|
|||||||
status_t init_mutexes(void);
|
status_t init_mutexes(void);
|
||||||
void uninit_mutexes(void);
|
void uninit_mutexes(void);
|
||||||
|
|
||||||
|
status_t init_compat_layer(void);
|
||||||
|
|
||||||
/* busdma_machdep.c */
|
/* busdma_machdep.c */
|
||||||
void init_bounce_pages(void);
|
void init_bounce_pages(void);
|
||||||
void uninit_bounce_pages(void);
|
void uninit_bounce_pages(void);
|
||||||
|
|||||||
@@ -295,7 +295,8 @@ ether_sprintf(const u_char *ap)
|
|||||||
{
|
{
|
||||||
static char etherbuf[18];
|
static char etherbuf[18];
|
||||||
snprintf(etherbuf, sizeof (etherbuf),
|
snprintf(etherbuf, sizeof (etherbuf),
|
||||||
"%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx",
|
"%02x:%02x:%02x:%02x:%02x:%02x",
|
||||||
ap[0], ap[1], ap[2], ap[3], ap[4], ap[5]);
|
(uint32)ap[0], (uint32)ap[1], (uint32)ap[2], (uint32)ap[3],
|
||||||
|
(uint32)ap[4], (uint32)ap[5]);
|
||||||
return (etherbuf);
|
return (etherbuf);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user