2006-10-04 11:15:37 +02:00
|
|
|
/*
|
|
|
|
* tifm_7xx1.c - TI FlashMedia driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Alex Dubov <oakad@yahoo.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/tifm.h>
|
2007-04-28 14:21:10 +02:00
|
|
|
#include <linux/dma-mapping.h>
|
2006-10-04 11:15:37 +02:00
|
|
|
|
|
|
|
#define DRIVER_NAME "tifm_7xx1"
|
2007-04-12 08:59:12 +02:00
|
|
|
#define DRIVER_VERSION "0.8"
|
|
|
|
|
|
|
|
#define TIFM_IRQ_ENABLE 0x80000000
|
|
|
|
#define TIFM_IRQ_SOCKMASK(x) (x)
|
|
|
|
#define TIFM_IRQ_CARDMASK(x) ((x) << 8)
|
|
|
|
#define TIFM_IRQ_FIFOMASK(x) ((x) << 16)
|
|
|
|
#define TIFM_IRQ_SETALL 0xffffffff
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2007-04-12 08:59:17 +02:00
|
|
|
static void tifm_7xx1_dummy_eject(struct tifm_adapter *fm,
|
|
|
|
struct tifm_dev *sock)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-10-04 11:15:37 +02:00
|
|
|
static void tifm_7xx1_eject(struct tifm_adapter *fm, struct tifm_dev *sock)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&fm->lock, flags);
|
2006-12-18 04:20:06 +01:00
|
|
|
fm->socket_change_set |= 1 << sock->socket_id;
|
2007-04-12 08:59:15 +02:00
|
|
|
tifm_queue_work(&fm->media_switcher);
|
2006-10-04 11:15:37 +02:00
|
|
|
spin_unlock_irqrestore(&fm->lock, flags);
|
|
|
|
}
|
|
|
|
|
IRQ: Maintain regs pointer globally rather than passing to IRQ handlers
Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
of passing regs around manually through all ~1800 interrupt handlers in the
Linux kernel.
The regs pointer is used in few places, but it potentially costs both stack
space and code to pass it around. On the FRV arch, removing the regs parameter
from all the genirq function results in a 20% speed up of the IRQ exit path
(ie: from leaving timer_interrupt() to leaving do_IRQ()).
Where appropriate, an arch may override the generic storage facility and do
something different with the variable. On FRV, for instance, the address is
maintained in GR28 at all times inside the kernel as part of general exception
handling.
Having looked over the code, it appears that the parameter may be handed down
through up to twenty or so layers of functions. Consider a USB character
device attached to a USB hub, attached to a USB controller that posts its
interrupts through a cascaded auxiliary interrupt controller. A character
device driver may want to pass regs to the sysrq handler through the input
layer which adds another few layers of parameter passing.
I've build this code with allyesconfig for x86_64 and i386. I've runtested the
main part of the code on FRV and i386, though I can't test most of the drivers.
I've also done partial conversion for powerpc and MIPS - these at least compile
with minimal configurations.
This will affect all archs. Mostly the changes should be relatively easy.
Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
struct pt_regs *old_regs = set_irq_regs(regs);
And put the old one back at the end:
set_irq_regs(old_regs);
Don't pass regs through to generic_handle_irq() or __do_IRQ().
In timer_interrupt(), this sort of change will be necessary:
- update_process_times(user_mode(regs));
- profile_tick(CPU_PROFILING, regs);
+ update_process_times(user_mode(get_irq_regs()));
+ profile_tick(CPU_PROFILING);
I'd like to move update_process_times()'s use of get_irq_regs() into itself,
except that i386, alone of the archs, uses something other than user_mode().
Some notes on the interrupt handling in the drivers:
(*) input_dev() is now gone entirely. The regs pointer is no longer stored in
the input_dev struct.
(*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking. It does
something different depending on whether it's been supplied with a regs
pointer or not.
(*) Various IRQ handler function pointers have been moved to type
irq_handler_t.
Signed-Off-By: David Howells <dhowells@redhat.com>
(cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
2006-10-05 15:55:46 +02:00
|
|
|
static irqreturn_t tifm_7xx1_isr(int irq, void *dev_id)
|
2006-10-04 11:15:37 +02:00
|
|
|
{
|
|
|
|
struct tifm_adapter *fm = dev_id;
|
2006-12-10 15:55:31 +01:00
|
|
|
struct tifm_dev *sock;
|
2007-04-12 09:05:26 +02:00
|
|
|
unsigned int irq_status, cnt;
|
2006-10-04 11:15:37 +02:00
|
|
|
|
|
|
|
spin_lock(&fm->lock);
|
|
|
|
irq_status = readl(fm->addr + FM_INTERRUPT_STATUS);
|
|
|
|
if (irq_status == 0 || irq_status == (~0)) {
|
|
|
|
spin_unlock(&fm->lock);
|
|
|
|
return IRQ_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (irq_status & TIFM_IRQ_ENABLE) {
|
|
|
|
writel(TIFM_IRQ_ENABLE, fm->addr + FM_CLEAR_INTERRUPT_ENABLE);
|
|
|
|
|
2006-12-10 15:55:36 +01:00
|
|
|
for (cnt = 0; cnt < fm->num_sockets; cnt++) {
|
2006-12-10 15:55:31 +01:00
|
|
|
sock = fm->sockets[cnt];
|
2007-04-12 08:59:12 +02:00
|
|
|
if (sock) {
|
|
|
|
if ((irq_status >> cnt) & TIFM_IRQ_FIFOMASK(1))
|
|
|
|
sock->data_event(sock);
|
|
|
|
if ((irq_status >> cnt) & TIFM_IRQ_CARDMASK(1))
|
|
|
|
sock->card_event(sock);
|
|
|
|
}
|
2006-10-04 11:15:37 +02:00
|
|
|
}
|
2006-12-10 15:55:33 +01:00
|
|
|
|
2006-12-10 15:55:36 +01:00
|
|
|
fm->socket_change_set |= irq_status
|
|
|
|
& ((1 << fm->num_sockets) - 1);
|
2006-10-04 11:15:37 +02:00
|
|
|
}
|
|
|
|
writel(irq_status, fm->addr + FM_INTERRUPT_STATUS);
|
|
|
|
|
2007-04-12 08:59:15 +02:00
|
|
|
if (fm->finish_me)
|
|
|
|
complete_all(fm->finish_me);
|
|
|
|
else if (!fm->socket_change_set)
|
2006-12-18 04:20:06 +01:00
|
|
|
writel(TIFM_IRQ_ENABLE, fm->addr + FM_SET_INTERRUPT_ENABLE);
|
|
|
|
else
|
2007-04-12 08:59:15 +02:00
|
|
|
tifm_queue_work(&fm->media_switcher);
|
2006-10-04 11:15:37 +02:00
|
|
|
|
|
|
|
spin_unlock(&fm->lock);
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2007-04-12 08:59:16 +02:00
|
|
|
static unsigned char tifm_7xx1_toggle_sock_power(char __iomem *sock_addr)
|
2006-10-04 11:15:37 +02:00
|
|
|
{
|
|
|
|
unsigned int s_state;
|
|
|
|
int cnt;
|
|
|
|
|
|
|
|
writel(0x0e00, sock_addr + SOCK_CONTROL);
|
|
|
|
|
2007-04-12 08:59:16 +02:00
|
|
|
for (cnt = 16; cnt <= 256; cnt <<= 1) {
|
2006-12-10 15:55:36 +01:00
|
|
|
if (!(TIFM_SOCK_STATE_POWERED
|
|
|
|
& readl(sock_addr + SOCK_PRESENT_STATE)))
|
2006-10-04 11:15:37 +02:00
|
|
|
break;
|
2007-04-12 08:59:16 +02:00
|
|
|
|
|
|
|
msleep(cnt);
|
2006-10-04 11:15:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
s_state = readl(sock_addr + SOCK_PRESENT_STATE);
|
|
|
|
if (!(TIFM_SOCK_STATE_OCCUPIED & s_state))
|
2007-04-12 08:59:14 +02:00
|
|
|
return 0;
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2007-04-12 08:59:16 +02:00
|
|
|
writel(readl(sock_addr + SOCK_CONTROL) | TIFM_CTRL_LED,
|
|
|
|
sock_addr + SOCK_CONTROL);
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2007-04-12 08:59:16 +02:00
|
|
|
/* xd needs some extra time before power on */
|
|
|
|
if (((readl(sock_addr + SOCK_PRESENT_STATE) >> 4) & 7)
|
|
|
|
== TIFM_TYPE_XD)
|
|
|
|
msleep(40);
|
|
|
|
|
2007-05-02 05:14:55 +02:00
|
|
|
writel((s_state & TIFM_CTRL_POWER_MASK) | 0x0c00,
|
|
|
|
sock_addr + SOCK_CONTROL);
|
2007-04-12 08:59:16 +02:00
|
|
|
/* wait for power to stabilize */
|
|
|
|
msleep(20);
|
|
|
|
for (cnt = 16; cnt <= 256; cnt <<= 1) {
|
2006-12-10 15:55:36 +01:00
|
|
|
if ((TIFM_SOCK_STATE_POWERED
|
|
|
|
& readl(sock_addr + SOCK_PRESENT_STATE)))
|
2006-10-04 11:15:37 +02:00
|
|
|
break;
|
2007-04-12 08:59:16 +02:00
|
|
|
|
|
|
|
msleep(cnt);
|
2006-10-04 11:15:37 +02:00
|
|
|
}
|
|
|
|
|
2007-04-12 08:59:16 +02:00
|
|
|
writel(readl(sock_addr + SOCK_CONTROL) & (~TIFM_CTRL_LED),
|
|
|
|
sock_addr + SOCK_CONTROL);
|
2006-10-04 11:15:37 +02:00
|
|
|
|
|
|
|
return (readl(sock_addr + SOCK_PRESENT_STATE) >> 4) & 7;
|
|
|
|
}
|
|
|
|
|
2007-05-02 05:14:55 +02:00
|
|
|
inline static void tifm_7xx1_sock_power_off(char __iomem *sock_addr)
|
|
|
|
{
|
|
|
|
writel((~TIFM_CTRL_POWER_MASK) & readl(sock_addr + SOCK_CONTROL),
|
|
|
|
sock_addr + SOCK_CONTROL);
|
|
|
|
}
|
|
|
|
|
2006-10-09 21:29:43 +02:00
|
|
|
inline static char __iomem *
|
|
|
|
tifm_7xx1_sock_addr(char __iomem *base_addr, unsigned int sock_num)
|
2006-10-04 11:15:37 +02:00
|
|
|
{
|
|
|
|
return base_addr + ((sock_num + 1) << 10);
|
|
|
|
}
|
|
|
|
|
2007-04-12 08:59:15 +02:00
|
|
|
static void tifm_7xx1_switch_media(struct work_struct *work)
|
2006-10-04 11:15:37 +02:00
|
|
|
{
|
2007-04-12 08:59:15 +02:00
|
|
|
struct tifm_adapter *fm = container_of(work, struct tifm_adapter,
|
|
|
|
media_switcher);
|
2007-04-12 09:05:26 +02:00
|
|
|
struct tifm_dev *sock;
|
2007-05-02 05:14:55 +02:00
|
|
|
char __iomem *sock_addr;
|
2006-10-04 11:15:37 +02:00
|
|
|
unsigned long flags;
|
2007-04-12 08:59:14 +02:00
|
|
|
unsigned char media_id;
|
2007-04-12 09:05:26 +02:00
|
|
|
unsigned int socket_change_set, cnt;
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2007-04-12 08:59:15 +02:00
|
|
|
spin_lock_irqsave(&fm->lock, flags);
|
|
|
|
socket_change_set = fm->socket_change_set;
|
|
|
|
fm->socket_change_set = 0;
|
2006-12-10 15:55:33 +01:00
|
|
|
|
2007-04-12 08:59:17 +02:00
|
|
|
dev_dbg(fm->cdev.dev, "checking media set %x\n",
|
2007-04-12 08:59:15 +02:00
|
|
|
socket_change_set);
|
2006-12-10 15:55:33 +01:00
|
|
|
|
2007-04-12 08:59:15 +02:00
|
|
|
if (!socket_change_set) {
|
2006-10-04 11:15:37 +02:00
|
|
|
spin_unlock_irqrestore(&fm->lock, flags);
|
2007-04-12 08:59:15 +02:00
|
|
|
return;
|
|
|
|
}
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2007-04-12 08:59:18 +02:00
|
|
|
for (cnt = 0; cnt < fm->num_sockets; cnt++) {
|
|
|
|
if (!(socket_change_set & (1 << cnt)))
|
|
|
|
continue;
|
|
|
|
sock = fm->sockets[cnt];
|
|
|
|
if (sock) {
|
|
|
|
printk(KERN_INFO
|
|
|
|
"%s : demand removing card from socket %u:%u\n",
|
|
|
|
fm->cdev.class_id, fm->id, cnt);
|
|
|
|
fm->sockets[cnt] = NULL;
|
2007-05-02 05:14:55 +02:00
|
|
|
sock_addr = sock->addr;
|
2006-12-10 15:55:33 +01:00
|
|
|
spin_unlock_irqrestore(&fm->lock, flags);
|
2007-04-12 08:59:18 +02:00
|
|
|
device_unregister(&sock->dev);
|
|
|
|
spin_lock_irqsave(&fm->lock, flags);
|
2007-05-02 05:14:55 +02:00
|
|
|
tifm_7xx1_sock_power_off(sock_addr);
|
|
|
|
writel(0x0e00, sock_addr + SOCK_CONTROL);
|
2007-04-12 08:59:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&fm->lock, flags);
|
|
|
|
|
|
|
|
media_id = tifm_7xx1_toggle_sock_power(
|
|
|
|
tifm_7xx1_sock_addr(fm->addr, cnt));
|
|
|
|
|
|
|
|
// tifm_alloc_device will check if media_id is valid
|
|
|
|
sock = tifm_alloc_device(fm, cnt, media_id);
|
|
|
|
if (sock) {
|
|
|
|
sock->addr = tifm_7xx1_sock_addr(fm->addr, cnt);
|
|
|
|
|
|
|
|
if (!device_register(&sock->dev)) {
|
2006-12-10 15:55:33 +01:00
|
|
|
spin_lock_irqsave(&fm->lock, flags);
|
2007-04-12 08:59:18 +02:00
|
|
|
if (!fm->sockets[cnt]) {
|
|
|
|
fm->sockets[cnt] = sock;
|
|
|
|
sock = NULL;
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&fm->lock, flags);
|
2006-12-10 15:55:33 +01:00
|
|
|
}
|
2007-04-12 08:59:18 +02:00
|
|
|
if (sock)
|
|
|
|
tifm_free_device(&sock->dev);
|
2006-12-10 15:55:33 +01:00
|
|
|
}
|
2007-04-12 08:59:18 +02:00
|
|
|
spin_lock_irqsave(&fm->lock, flags);
|
|
|
|
}
|
2006-12-10 15:55:33 +01:00
|
|
|
|
2007-04-12 08:59:15 +02:00
|
|
|
writel(TIFM_IRQ_FIFOMASK(socket_change_set)
|
|
|
|
| TIFM_IRQ_CARDMASK(socket_change_set),
|
|
|
|
fm->addr + FM_CLEAR_INTERRUPT_ENABLE);
|
|
|
|
|
|
|
|
writel(TIFM_IRQ_FIFOMASK(socket_change_set)
|
|
|
|
| TIFM_IRQ_CARDMASK(socket_change_set),
|
|
|
|
fm->addr + FM_SET_INTERRUPT_ENABLE);
|
|
|
|
|
|
|
|
writel(TIFM_IRQ_ENABLE, fm->addr + FM_SET_INTERRUPT_ENABLE);
|
|
|
|
spin_unlock_irqrestore(&fm->lock, flags);
|
2006-10-04 11:15:37 +02:00
|
|
|
}
|
|
|
|
|
2006-12-18 04:20:06 +01:00
|
|
|
#ifdef CONFIG_PM
|
|
|
|
|
2006-10-04 11:15:37 +02:00
|
|
|
static int tifm_7xx1_suspend(struct pci_dev *dev, pm_message_t state)
|
|
|
|
{
|
2007-05-02 05:14:55 +02:00
|
|
|
struct tifm_adapter *fm = pci_get_drvdata(dev);
|
|
|
|
int cnt;
|
|
|
|
|
2006-12-18 04:20:06 +01:00
|
|
|
dev_dbg(&dev->dev, "suspending host\n");
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2007-05-02 05:14:55 +02:00
|
|
|
for (cnt = 0; cnt < fm->num_sockets; cnt++) {
|
|
|
|
if (fm->sockets[cnt])
|
|
|
|
tifm_7xx1_sock_power_off(fm->sockets[cnt]->addr);
|
|
|
|
}
|
|
|
|
|
2006-12-18 04:20:06 +01:00
|
|
|
pci_save_state(dev);
|
|
|
|
pci_enable_wake(dev, pci_choose_state(dev, state), 0);
|
|
|
|
pci_disable_device(dev);
|
|
|
|
pci_set_power_state(dev, pci_choose_state(dev, state));
|
2006-10-04 11:15:37 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tifm_7xx1_resume(struct pci_dev *dev)
|
|
|
|
{
|
|
|
|
struct tifm_adapter *fm = pci_get_drvdata(dev);
|
2007-04-12 08:59:19 +02:00
|
|
|
int rc;
|
|
|
|
unsigned int good_sockets = 0, bad_sockets = 0;
|
2006-10-04 11:15:37 +02:00
|
|
|
unsigned long flags;
|
2007-04-12 08:59:14 +02:00
|
|
|
unsigned char new_ids[fm->num_sockets];
|
2007-04-12 08:59:15 +02:00
|
|
|
DECLARE_COMPLETION_ONSTACK(finish_resume);
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2006-12-18 04:20:06 +01:00
|
|
|
pci_set_power_state(dev, PCI_D0);
|
2006-10-04 11:15:37 +02:00
|
|
|
pci_restore_state(dev);
|
2006-12-18 04:20:06 +01:00
|
|
|
rc = pci_enable_device(dev);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
pci_set_master(dev);
|
|
|
|
|
|
|
|
dev_dbg(&dev->dev, "resuming host\n");
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2007-04-12 08:59:19 +02:00
|
|
|
for (rc = 0; rc < fm->num_sockets; rc++)
|
|
|
|
new_ids[rc] = tifm_7xx1_toggle_sock_power(
|
|
|
|
tifm_7xx1_sock_addr(fm->addr, rc));
|
2006-10-04 11:15:37 +02:00
|
|
|
spin_lock_irqsave(&fm->lock, flags);
|
2007-04-12 08:59:19 +02:00
|
|
|
for (rc = 0; rc < fm->num_sockets; rc++) {
|
|
|
|
if (fm->sockets[rc]) {
|
|
|
|
if (fm->sockets[rc]->type == new_ids[rc])
|
|
|
|
good_sockets |= 1 << rc;
|
|
|
|
else
|
|
|
|
bad_sockets |= 1 << rc;
|
2006-12-18 04:20:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-10 15:55:33 +01:00
|
|
|
writel(TIFM_IRQ_ENABLE | TIFM_IRQ_SOCKMASK((1 << fm->num_sockets) - 1),
|
2006-12-18 04:20:06 +01:00
|
|
|
fm->addr + FM_SET_INTERRUPT_ENABLE);
|
2007-04-12 08:59:19 +02:00
|
|
|
dev_dbg(&dev->dev, "change sets on resume: good %x, bad %x\n",
|
|
|
|
good_sockets, bad_sockets);
|
|
|
|
|
|
|
|
fm->socket_change_set = 0;
|
|
|
|
if (good_sockets) {
|
2007-04-12 08:59:15 +02:00
|
|
|
fm->finish_me = &finish_resume;
|
2006-12-18 04:20:06 +01:00
|
|
|
spin_unlock_irqrestore(&fm->lock, flags);
|
2007-04-12 08:59:19 +02:00
|
|
|
rc = wait_for_completion_timeout(&finish_resume, HZ);
|
|
|
|
dev_dbg(&dev->dev, "wait returned %d\n", rc);
|
|
|
|
writel(TIFM_IRQ_FIFOMASK(good_sockets)
|
|
|
|
| TIFM_IRQ_CARDMASK(good_sockets),
|
|
|
|
fm->addr + FM_CLEAR_INTERRUPT_ENABLE);
|
|
|
|
writel(TIFM_IRQ_FIFOMASK(good_sockets)
|
|
|
|
| TIFM_IRQ_CARDMASK(good_sockets),
|
|
|
|
fm->addr + FM_SET_INTERRUPT_ENABLE);
|
|
|
|
spin_lock_irqsave(&fm->lock, flags);
|
|
|
|
fm->finish_me = NULL;
|
|
|
|
fm->socket_change_set ^= good_sockets & fm->socket_change_set;
|
2006-12-18 04:20:06 +01:00
|
|
|
}
|
|
|
|
|
2007-04-12 08:59:19 +02:00
|
|
|
fm->socket_change_set |= bad_sockets;
|
|
|
|
if (fm->socket_change_set)
|
|
|
|
tifm_queue_work(&fm->media_switcher);
|
2006-12-18 04:20:06 +01:00
|
|
|
|
2007-04-12 08:59:19 +02:00
|
|
|
spin_unlock_irqrestore(&fm->lock, flags);
|
2006-12-18 04:20:06 +01:00
|
|
|
writel(TIFM_IRQ_ENABLE,
|
|
|
|
fm->addr + FM_SET_INTERRUPT_ENABLE);
|
|
|
|
|
2006-10-04 11:15:37 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-12-18 04:20:06 +01:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define tifm_7xx1_suspend NULL
|
|
|
|
#define tifm_7xx1_resume NULL
|
|
|
|
|
|
|
|
#endif /* CONFIG_PM */
|
|
|
|
|
2006-10-04 11:15:37 +02:00
|
|
|
static int tifm_7xx1_probe(struct pci_dev *dev,
|
2006-12-10 15:55:36 +01:00
|
|
|
const struct pci_device_id *dev_id)
|
2006-10-04 11:15:37 +02:00
|
|
|
{
|
|
|
|
struct tifm_adapter *fm;
|
|
|
|
int pci_dev_busy = 0;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = pci_set_dma_mask(dev, DMA_32BIT_MASK);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
rc = pci_enable_device(dev);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
pci_set_master(dev);
|
|
|
|
|
|
|
|
rc = pci_request_regions(dev, DRIVER_NAME);
|
|
|
|
if (rc) {
|
|
|
|
pci_dev_busy = 1;
|
|
|
|
goto err_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
pci_intx(dev, 1);
|
|
|
|
|
2007-04-12 08:59:17 +02:00
|
|
|
fm = tifm_alloc_adapter(dev->device == PCI_DEVICE_ID_TI_XX21_XX11_FM
|
|
|
|
? 4 : 2, &dev->dev);
|
2006-10-04 11:15:37 +02:00
|
|
|
if (!fm) {
|
|
|
|
rc = -ENOMEM;
|
|
|
|
goto err_out_int;
|
|
|
|
}
|
|
|
|
|
2007-04-12 08:59:15 +02:00
|
|
|
INIT_WORK(&fm->media_switcher, tifm_7xx1_switch_media);
|
2006-10-04 11:15:37 +02:00
|
|
|
fm->eject = tifm_7xx1_eject;
|
|
|
|
pci_set_drvdata(dev, fm);
|
|
|
|
|
|
|
|
fm->addr = ioremap(pci_resource_start(dev, 0),
|
2006-12-10 15:55:36 +01:00
|
|
|
pci_resource_len(dev, 0));
|
2006-10-04 11:15:37 +02:00
|
|
|
if (!fm->addr)
|
|
|
|
goto err_out_free;
|
|
|
|
|
2007-04-12 08:59:17 +02:00
|
|
|
rc = request_irq(dev->irq, tifm_7xx1_isr, SA_SHIRQ, DRIVER_NAME, fm);
|
2006-10-04 11:15:37 +02:00
|
|
|
if (rc)
|
|
|
|
goto err_out_unmap;
|
|
|
|
|
2007-04-12 08:59:15 +02:00
|
|
|
rc = tifm_add_adapter(fm);
|
2006-10-04 11:15:37 +02:00
|
|
|
if (rc)
|
|
|
|
goto err_out_irq;
|
|
|
|
|
2006-12-10 15:55:33 +01:00
|
|
|
writel(TIFM_IRQ_ENABLE | TIFM_IRQ_SOCKMASK((1 << fm->num_sockets) - 1),
|
2006-12-10 15:55:36 +01:00
|
|
|
fm->addr + FM_SET_INTERRUPT_ENABLE);
|
2006-10-04 11:15:37 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_out_irq:
|
|
|
|
free_irq(dev->irq, fm);
|
|
|
|
err_out_unmap:
|
|
|
|
iounmap(fm->addr);
|
|
|
|
err_out_free:
|
|
|
|
pci_set_drvdata(dev, NULL);
|
|
|
|
tifm_free_adapter(fm);
|
|
|
|
err_out_int:
|
|
|
|
pci_intx(dev, 0);
|
|
|
|
pci_release_regions(dev);
|
|
|
|
err_out:
|
|
|
|
if (!pci_dev_busy)
|
|
|
|
pci_disable_device(dev);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void tifm_7xx1_remove(struct pci_dev *dev)
|
|
|
|
{
|
|
|
|
struct tifm_adapter *fm = pci_get_drvdata(dev);
|
2007-05-02 05:14:55 +02:00
|
|
|
int cnt;
|
2006-10-04 11:15:37 +02:00
|
|
|
|
2007-04-12 08:59:17 +02:00
|
|
|
fm->eject = tifm_7xx1_dummy_eject;
|
2006-12-18 04:20:06 +01:00
|
|
|
writel(TIFM_IRQ_SETALL, fm->addr + FM_CLEAR_INTERRUPT_ENABLE);
|
|
|
|
mmiowb();
|
|
|
|
free_irq(dev->irq, fm);
|
|
|
|
|
2006-10-04 11:15:37 +02:00
|
|
|
tifm_remove_adapter(fm);
|
|
|
|
|
2007-05-02 05:14:55 +02:00
|
|
|
for (cnt = 0; cnt < fm->num_sockets; cnt++)
|
|
|
|
tifm_7xx1_sock_power_off(tifm_7xx1_sock_addr(fm->addr, cnt));
|
|
|
|
|
2006-10-09 21:29:43 +02:00
|
|
|
pci_set_drvdata(dev, NULL);
|
2006-10-04 11:15:37 +02:00
|
|
|
|
|
|
|
iounmap(fm->addr);
|
|
|
|
pci_intx(dev, 0);
|
|
|
|
pci_release_regions(dev);
|
|
|
|
|
|
|
|
pci_disable_device(dev);
|
|
|
|
tifm_free_adapter(fm);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct pci_device_id tifm_7xx1_pci_tbl [] = {
|
2006-12-10 15:55:35 +01:00
|
|
|
{ PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_XX21_XX11_FM, PCI_ANY_ID,
|
|
|
|
PCI_ANY_ID, 0, 0, 0 }, /* xx21 - the one I have */
|
|
|
|
{ PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_XX12_FM, PCI_ANY_ID,
|
|
|
|
PCI_ANY_ID, 0, 0, 0 },
|
|
|
|
{ PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_XX20_FM, PCI_ANY_ID,
|
|
|
|
PCI_ANY_ID, 0, 0, 0 },
|
2006-10-04 11:15:37 +02:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct pci_driver tifm_7xx1_driver = {
|
|
|
|
.name = DRIVER_NAME,
|
|
|
|
.id_table = tifm_7xx1_pci_tbl,
|
|
|
|
.probe = tifm_7xx1_probe,
|
|
|
|
.remove = tifm_7xx1_remove,
|
|
|
|
.suspend = tifm_7xx1_suspend,
|
|
|
|
.resume = tifm_7xx1_resume,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init tifm_7xx1_init(void)
|
|
|
|
{
|
|
|
|
return pci_register_driver(&tifm_7xx1_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit tifm_7xx1_exit(void)
|
|
|
|
{
|
|
|
|
pci_unregister_driver(&tifm_7xx1_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Alex Dubov");
|
|
|
|
MODULE_DESCRIPTION("TI FlashMedia host driver");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_DEVICE_TABLE(pci, tifm_7xx1_pci_tbl);
|
|
|
|
MODULE_VERSION(DRIVER_VERSION);
|
|
|
|
|
|
|
|
module_init(tifm_7xx1_init);
|
|
|
|
module_exit(tifm_7xx1_exit);
|