12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316 |
- #include <linux/pci.h>
- #include <linux/module.h>
- #include <linux/dma-mapping.h>
- #include <linux/highmem.h>
- #include <linux/delay.h>
- #include <linux/interrupt.h>
- #include <linux/mmc/host.h>
- #define DRV_NAME "via_sdmmc"
- #define PCI_DEVICE_ID_VIA_9530 0x9530
- #define VIA_CRDR_SDC_OFF 0x200
- #define VIA_CRDR_DDMA_OFF 0x400
- #define VIA_CRDR_PCICTRL_OFF 0x600
- #define VIA_CRDR_MIN_CLOCK 375000
- #define VIA_CRDR_MAX_CLOCK 48000000
- #define VIA_CRDR_PCI_WORK_MODE 0x40
- #define VIA_CRDR_PCI_DBG_MODE 0x41
- #define VIA_CRDR_SDCTRL 0x0
- #define VIA_CRDR_SDCTRL_START 0x01
- #define VIA_CRDR_SDCTRL_WRITE 0x04
- #define VIA_CRDR_SDCTRL_SINGLE_WR 0x10
- #define VIA_CRDR_SDCTRL_SINGLE_RD 0x20
- #define VIA_CRDR_SDCTRL_MULTI_WR 0x30
- #define VIA_CRDR_SDCTRL_MULTI_RD 0x40
- #define VIA_CRDR_SDCTRL_STOP 0x70
- #define VIA_CRDR_SDCTRL_RSP_NONE 0x0
- #define VIA_CRDR_SDCTRL_RSP_R1 0x10000
- #define VIA_CRDR_SDCTRL_RSP_R2 0x20000
- #define VIA_CRDR_SDCTRL_RSP_R3 0x30000
- #define VIA_CRDR_SDCTRL_RSP_R1B 0x90000
- #define VIA_CRDR_SDCARG 0x4
- #define VIA_CRDR_SDBUSMODE 0x8
- #define VIA_CRDR_SDMODE_4BIT 0x02
- #define VIA_CRDR_SDMODE_CLK_ON 0x40
- #define VIA_CRDR_SDBLKLEN 0xc
- #define VIA_CRDR_SDBLKLEN_GPIDET 0x2000
- #define VIA_CRDR_SDBLKLEN_INTEN 0x8000
- #define VIA_CRDR_MAX_BLOCK_COUNT 65536
- #define VIA_CRDR_MAX_BLOCK_LENGTH 2048
- #define VIA_CRDR_SDRESP0 0x10
- #define VIA_CRDR_SDRESP1 0x14
- #define VIA_CRDR_SDRESP2 0x18
- #define VIA_CRDR_SDRESP3 0x1c
- #define VIA_CRDR_SDCURBLKCNT 0x20
- #define VIA_CRDR_SDINTMASK 0x24
- #define VIA_CRDR_SDINTMASK_MBDIE 0x10
- #define VIA_CRDR_SDINTMASK_BDDIE 0x20
- #define VIA_CRDR_SDINTMASK_CIRIE 0x80
- #define VIA_CRDR_SDINTMASK_CRDIE 0x200
- #define VIA_CRDR_SDINTMASK_CRTOIE 0x400
- #define VIA_CRDR_SDINTMASK_ASCRDIE 0x800
- #define VIA_CRDR_SDINTMASK_DTIE 0x1000
- #define VIA_CRDR_SDINTMASK_SCIE 0x2000
- #define VIA_CRDR_SDINTMASK_RCIE 0x4000
- #define VIA_CRDR_SDINTMASK_WCIE 0x8000
- #define VIA_CRDR_SDACTIVE_INTMASK \
- (VIA_CRDR_SDINTMASK_MBDIE | VIA_CRDR_SDINTMASK_CIRIE \
- | VIA_CRDR_SDINTMASK_CRDIE | VIA_CRDR_SDINTMASK_CRTOIE \
- | VIA_CRDR_SDINTMASK_DTIE | VIA_CRDR_SDINTMASK_SCIE \
- | VIA_CRDR_SDINTMASK_RCIE | VIA_CRDR_SDINTMASK_WCIE)
- #define VIA_CRDR_SDSTATUS 0x28
- #define VIA_CRDR_SDSTS_CECC 0x01
- #define VIA_CRDR_SDSTS_WP 0x02
- #define VIA_CRDR_SDSTS_SLOTD 0x04
- #define VIA_CRDR_SDSTS_SLOTG 0x08
- #define VIA_CRDR_SDSTS_MBD 0x10
- #define VIA_CRDR_SDSTS_BDD 0x20
- #define VIA_CRDR_SDSTS_CD 0x40
- #define VIA_CRDR_SDSTS_CIR 0x80
- #define VIA_CRDR_SDSTS_IO 0x100
- #define VIA_CRDR_SDSTS_CRD 0x200
- #define VIA_CRDR_SDSTS_CRTO 0x400
- #define VIA_CRDR_SDSTS_ASCRDIE 0x800
- #define VIA_CRDR_SDSTS_DT 0x1000
- #define VIA_CRDR_SDSTS_SC 0x2000
- #define VIA_CRDR_SDSTS_RC 0x4000
- #define VIA_CRDR_SDSTS_WC 0x8000
- #define VIA_CRDR_SDSTS_IGN_MASK\
- (VIA_CRDR_SDSTS_BDD | VIA_CRDR_SDSTS_ASCRDIE | VIA_CRDR_SDSTS_IO)
- #define VIA_CRDR_SDSTS_INT_MASK \
- (VIA_CRDR_SDSTS_MBD | VIA_CRDR_SDSTS_BDD | VIA_CRDR_SDSTS_CD \
- | VIA_CRDR_SDSTS_CIR | VIA_CRDR_SDSTS_IO | VIA_CRDR_SDSTS_CRD \
- | VIA_CRDR_SDSTS_CRTO | VIA_CRDR_SDSTS_ASCRDIE | VIA_CRDR_SDSTS_DT \
- | VIA_CRDR_SDSTS_SC | VIA_CRDR_SDSTS_RC | VIA_CRDR_SDSTS_WC)
- #define VIA_CRDR_SDSTS_W1C_MASK \
- (VIA_CRDR_SDSTS_CECC | VIA_CRDR_SDSTS_MBD | VIA_CRDR_SDSTS_BDD \
- | VIA_CRDR_SDSTS_CD | VIA_CRDR_SDSTS_CIR | VIA_CRDR_SDSTS_CRD \
- | VIA_CRDR_SDSTS_CRTO | VIA_CRDR_SDSTS_ASCRDIE | VIA_CRDR_SDSTS_DT \
- | VIA_CRDR_SDSTS_SC | VIA_CRDR_SDSTS_RC | VIA_CRDR_SDSTS_WC)
- #define VIA_CRDR_SDSTS_CMD_MASK \
- (VIA_CRDR_SDSTS_CRD | VIA_CRDR_SDSTS_CRTO | VIA_CRDR_SDSTS_SC)
- #define VIA_CRDR_SDSTS_DATA_MASK\
- (VIA_CRDR_SDSTS_MBD | VIA_CRDR_SDSTS_DT \
- | VIA_CRDR_SDSTS_RC | VIA_CRDR_SDSTS_WC)
- #define VIA_CRDR_SDSTATUS2 0x2a
- #define VIA_CRDR_SDSTS_CFE 0x80
- #define VIA_CRDR_SDRSPTMO 0x2C
- #define VIA_CRDR_SDCLKSEL 0x30
- #define VIA_CRDR_SDEXTCTRL 0x34
- #define VIS_CRDR_SDEXTCTRL_AUTOSTOP_SD 0x01
- #define VIS_CRDR_SDEXTCTRL_SHIFT_9 0x02
- #define VIS_CRDR_SDEXTCTRL_MMC_8BIT 0x04
- #define VIS_CRDR_SDEXTCTRL_RELD_BLK 0x08
- #define VIS_CRDR_SDEXTCTRL_BAD_CMDA 0x10
- #define VIS_CRDR_SDEXTCTRL_BAD_DATA 0x20
- #define VIS_CRDR_SDEXTCTRL_AUTOSTOP_SPI 0x40
- #define VIA_CRDR_SDEXTCTRL_HISPD 0x80
- #define VIA_CRDR_DMABASEADD 0x0
- #define VIA_CRDR_DMACOUNTER 0x4
- #define VIA_CRDR_DMACTRL 0x8
- #define VIA_CRDR_DMACTRL_DIR 0x100
- #define VIA_CRDR_DMACTRL_ENIRQ 0x10000
- #define VIA_CRDR_DMACTRL_SFTRST 0x1000000
- #define VIA_CRDR_DMASTS 0xc
- #define VIA_CRDR_DMASTART 0x10
- #define VIA_CRDR_PCICLKGATT 0x2
- #define VIA_CRDR_PCICLKGATT_SFTRST 0x01
- #define VIA_CRDR_PCICLKGATT_3V3 0x10
- #define VIA_CRDR_PCICLKGATT_PAD_PWRON 0x20
- #define VIA_CRDR_PCISDCCLK 0x5
- #define VIA_CRDR_PCIDMACLK 0x7
- #define VIA_CRDR_PCIDMACLK_SDC 0x2
- #define VIA_CRDR_PCIINTCTRL 0x8
- #define VIA_CRDR_PCIINTCTRL_SDCIRQEN 0x04
- #define VIA_CRDR_PCIINTSTATUS 0x9
- #define VIA_CRDR_PCIINTSTATUS_SDC 0x04
- #define VIA_CRDR_PCITMOCTRL 0xa
- #define VIA_CRDR_PCITMOCTRL_NO 0x0
- #define VIA_CRDR_PCITMOCTRL_32US 0x1
- #define VIA_CRDR_PCITMOCTRL_256US 0x2
- #define VIA_CRDR_PCITMOCTRL_1024US 0x3
- #define VIA_CRDR_PCITMOCTRL_256MS 0x4
- #define VIA_CRDR_PCITMOCTRL_512MS 0x5
- #define VIA_CRDR_PCITMOCTRL_1024MS 0x6
- enum PCI_HOST_CLK_CONTROL {
- PCI_CLK_375K = 0x03,
- PCI_CLK_8M = 0x04,
- PCI_CLK_12M = 0x00,
- PCI_CLK_16M = 0x05,
- PCI_CLK_24M = 0x01,
- PCI_CLK_33M = 0x06,
- PCI_CLK_48M = 0x02
- };
- struct sdhcreg {
- u32 sdcontrol_reg;
- u32 sdcmdarg_reg;
- u32 sdbusmode_reg;
- u32 sdblklen_reg;
- u32 sdresp_reg[4];
- u32 sdcurblkcnt_reg;
- u32 sdintmask_reg;
- u32 sdstatus_reg;
- u32 sdrsptmo_reg;
- u32 sdclksel_reg;
- u32 sdextctrl_reg;
- };
- struct pcictrlreg {
- u8 reserve[2];
- u8 pciclkgat_reg;
- u8 pcinfcclk_reg;
- u8 pcimscclk_reg;
- u8 pcisdclk_reg;
- u8 pcicaclk_reg;
- u8 pcidmaclk_reg;
- u8 pciintctrl_reg;
- u8 pciintstatus_reg;
- u8 pcitmoctrl_reg;
- u8 Resv;
- };
- struct via_crdr_mmc_host {
- struct mmc_host *mmc;
- struct mmc_request *mrq;
- struct mmc_command *cmd;
- struct mmc_data *data;
- void __iomem *mmiobase;
- void __iomem *sdhc_mmiobase;
- void __iomem *ddma_mmiobase;
- void __iomem *pcictrl_mmiobase;
- struct pcictrlreg pm_pcictrl_reg;
- struct sdhcreg pm_sdhc_reg;
- struct work_struct carddet_work;
- struct tasklet_struct finish_tasklet;
- struct timer_list timer;
- spinlock_t lock;
- u8 power;
- int reject;
- unsigned int quirks;
- };
- #define VIA_CRDR_QUIRK_300MS_PWRDELAY 0x0001
- #define VIA_CMD_TIMEOUT_MS 1000
- static const struct pci_device_id via_ids[] = {
- {PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_9530,
- PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0,},
- {0,}
- };
- MODULE_DEVICE_TABLE(pci, via_ids);
- static void via_print_sdchc(struct via_crdr_mmc_host *host)
- {
- void __iomem *addrbase = host->sdhc_mmiobase;
- pr_debug("SDC MMIO Registers:\n");
- pr_debug("SDCONTROL=%08x, SDCMDARG=%08x, SDBUSMODE=%08x\n",
- readl(addrbase + VIA_CRDR_SDCTRL),
- readl(addrbase + VIA_CRDR_SDCARG),
- readl(addrbase + VIA_CRDR_SDBUSMODE));
- pr_debug("SDBLKLEN=%08x, SDCURBLKCNT=%08x, SDINTMASK=%08x\n",
- readl(addrbase + VIA_CRDR_SDBLKLEN),
- readl(addrbase + VIA_CRDR_SDCURBLKCNT),
- readl(addrbase + VIA_CRDR_SDINTMASK));
- pr_debug("SDSTATUS=%08x, SDCLKSEL=%08x, SDEXTCTRL=%08x\n",
- readl(addrbase + VIA_CRDR_SDSTATUS),
- readl(addrbase + VIA_CRDR_SDCLKSEL),
- readl(addrbase + VIA_CRDR_SDEXTCTRL));
- }
- static void via_print_pcictrl(struct via_crdr_mmc_host *host)
- {
- void __iomem *addrbase = host->pcictrl_mmiobase;
- pr_debug("PCI Control Registers:\n");
- pr_debug("PCICLKGATT=%02x, PCISDCCLK=%02x, PCIDMACLK=%02x\n",
- readb(addrbase + VIA_CRDR_PCICLKGATT),
- readb(addrbase + VIA_CRDR_PCISDCCLK),
- readb(addrbase + VIA_CRDR_PCIDMACLK));
- pr_debug("PCIINTCTRL=%02x, PCIINTSTATUS=%02x\n",
- readb(addrbase + VIA_CRDR_PCIINTCTRL),
- readb(addrbase + VIA_CRDR_PCIINTSTATUS));
- }
- static void via_save_pcictrlreg(struct via_crdr_mmc_host *host)
- {
- struct pcictrlreg *pm_pcictrl_reg;
- void __iomem *addrbase;
- pm_pcictrl_reg = &(host->pm_pcictrl_reg);
- addrbase = host->pcictrl_mmiobase;
- pm_pcictrl_reg->pciclkgat_reg = readb(addrbase + VIA_CRDR_PCICLKGATT);
- pm_pcictrl_reg->pciclkgat_reg |=
- VIA_CRDR_PCICLKGATT_3V3 | VIA_CRDR_PCICLKGATT_PAD_PWRON;
- pm_pcictrl_reg->pcisdclk_reg = readb(addrbase + VIA_CRDR_PCISDCCLK);
- pm_pcictrl_reg->pcidmaclk_reg = readb(addrbase + VIA_CRDR_PCIDMACLK);
- pm_pcictrl_reg->pciintctrl_reg = readb(addrbase + VIA_CRDR_PCIINTCTRL);
- pm_pcictrl_reg->pciintstatus_reg =
- readb(addrbase + VIA_CRDR_PCIINTSTATUS);
- pm_pcictrl_reg->pcitmoctrl_reg = readb(addrbase + VIA_CRDR_PCITMOCTRL);
- }
- static void via_restore_pcictrlreg(struct via_crdr_mmc_host *host)
- {
- struct pcictrlreg *pm_pcictrl_reg;
- void __iomem *addrbase;
- pm_pcictrl_reg = &(host->pm_pcictrl_reg);
- addrbase = host->pcictrl_mmiobase;
- writeb(pm_pcictrl_reg->pciclkgat_reg, addrbase + VIA_CRDR_PCICLKGATT);
- writeb(pm_pcictrl_reg->pcisdclk_reg, addrbase + VIA_CRDR_PCISDCCLK);
- writeb(pm_pcictrl_reg->pcidmaclk_reg, addrbase + VIA_CRDR_PCIDMACLK);
- writeb(pm_pcictrl_reg->pciintctrl_reg, addrbase + VIA_CRDR_PCIINTCTRL);
- writeb(pm_pcictrl_reg->pciintstatus_reg,
- addrbase + VIA_CRDR_PCIINTSTATUS);
- writeb(pm_pcictrl_reg->pcitmoctrl_reg, addrbase + VIA_CRDR_PCITMOCTRL);
- }
- static void via_save_sdcreg(struct via_crdr_mmc_host *host)
- {
- struct sdhcreg *pm_sdhc_reg;
- void __iomem *addrbase;
- pm_sdhc_reg = &(host->pm_sdhc_reg);
- addrbase = host->sdhc_mmiobase;
- pm_sdhc_reg->sdcontrol_reg = readl(addrbase + VIA_CRDR_SDCTRL);
- pm_sdhc_reg->sdcmdarg_reg = readl(addrbase + VIA_CRDR_SDCARG);
- pm_sdhc_reg->sdbusmode_reg = readl(addrbase + VIA_CRDR_SDBUSMODE);
- pm_sdhc_reg->sdblklen_reg = readl(addrbase + VIA_CRDR_SDBLKLEN);
- pm_sdhc_reg->sdcurblkcnt_reg = readl(addrbase + VIA_CRDR_SDCURBLKCNT);
- pm_sdhc_reg->sdintmask_reg = readl(addrbase + VIA_CRDR_SDINTMASK);
- pm_sdhc_reg->sdstatus_reg = readl(addrbase + VIA_CRDR_SDSTATUS);
- pm_sdhc_reg->sdrsptmo_reg = readl(addrbase + VIA_CRDR_SDRSPTMO);
- pm_sdhc_reg->sdclksel_reg = readl(addrbase + VIA_CRDR_SDCLKSEL);
- pm_sdhc_reg->sdextctrl_reg = readl(addrbase + VIA_CRDR_SDEXTCTRL);
- }
- static void via_restore_sdcreg(struct via_crdr_mmc_host *host)
- {
- struct sdhcreg *pm_sdhc_reg;
- void __iomem *addrbase;
- pm_sdhc_reg = &(host->pm_sdhc_reg);
- addrbase = host->sdhc_mmiobase;
- writel(pm_sdhc_reg->sdcontrol_reg, addrbase + VIA_CRDR_SDCTRL);
- writel(pm_sdhc_reg->sdcmdarg_reg, addrbase + VIA_CRDR_SDCARG);
- writel(pm_sdhc_reg->sdbusmode_reg, addrbase + VIA_CRDR_SDBUSMODE);
- writel(pm_sdhc_reg->sdblklen_reg, addrbase + VIA_CRDR_SDBLKLEN);
- writel(pm_sdhc_reg->sdcurblkcnt_reg, addrbase + VIA_CRDR_SDCURBLKCNT);
- writel(pm_sdhc_reg->sdintmask_reg, addrbase + VIA_CRDR_SDINTMASK);
- writel(pm_sdhc_reg->sdstatus_reg, addrbase + VIA_CRDR_SDSTATUS);
- writel(pm_sdhc_reg->sdrsptmo_reg, addrbase + VIA_CRDR_SDRSPTMO);
- writel(pm_sdhc_reg->sdclksel_reg, addrbase + VIA_CRDR_SDCLKSEL);
- writel(pm_sdhc_reg->sdextctrl_reg, addrbase + VIA_CRDR_SDEXTCTRL);
- }
- static void via_pwron_sleep(struct via_crdr_mmc_host *sdhost)
- {
- if (sdhost->quirks & VIA_CRDR_QUIRK_300MS_PWRDELAY)
- msleep(300);
- else
- msleep(3);
- }
- static void via_set_ddma(struct via_crdr_mmc_host *host,
- dma_addr_t dmaaddr, u32 count, int dir, int enirq)
- {
- void __iomem *addrbase;
- u32 ctrl_data = 0;
- if (enirq)
- ctrl_data |= VIA_CRDR_DMACTRL_ENIRQ;
- if (dir)
- ctrl_data |= VIA_CRDR_DMACTRL_DIR;
- addrbase = host->ddma_mmiobase;
- writel(dmaaddr, addrbase + VIA_CRDR_DMABASEADD);
- writel(count, addrbase + VIA_CRDR_DMACOUNTER);
- writel(ctrl_data, addrbase + VIA_CRDR_DMACTRL);
- writel(0x01, addrbase + VIA_CRDR_DMASTART);
-
-
- addrbase = host->pcictrl_mmiobase;
- if (readb(addrbase + VIA_CRDR_PCISDCCLK) == PCI_CLK_375K) {
- dev_info(host->mmc->parent, "forcing card speed to 8MHz\n");
- writeb(PCI_CLK_8M, addrbase + VIA_CRDR_PCISDCCLK);
- }
- }
- static void via_sdc_preparedata(struct via_crdr_mmc_host *host,
- struct mmc_data *data)
- {
- void __iomem *addrbase;
- u32 blk_reg;
- int count;
- WARN_ON(host->data);
-
- BUG_ON(data->blksz > host->mmc->max_blk_size);
- BUG_ON(data->blocks > host->mmc->max_blk_count);
- host->data = data;
- count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
- ((data->flags & MMC_DATA_READ) ?
- DMA_FROM_DEVICE : DMA_TO_DEVICE));
- BUG_ON(count != 1);
- via_set_ddma(host, sg_dma_address(data->sg), sg_dma_len(data->sg),
- (data->flags & MMC_DATA_WRITE) ? 1 : 0, 1);
- addrbase = host->sdhc_mmiobase;
- blk_reg = data->blksz - 1;
- blk_reg |= VIA_CRDR_SDBLKLEN_GPIDET | VIA_CRDR_SDBLKLEN_INTEN;
- blk_reg |= (data->blocks) << 16;
- writel(blk_reg, addrbase + VIA_CRDR_SDBLKLEN);
- }
- static void via_sdc_get_response(struct via_crdr_mmc_host *host,
- struct mmc_command *cmd)
- {
- void __iomem *addrbase = host->sdhc_mmiobase;
- u32 dwdata0 = readl(addrbase + VIA_CRDR_SDRESP0);
- u32 dwdata1 = readl(addrbase + VIA_CRDR_SDRESP1);
- u32 dwdata2 = readl(addrbase + VIA_CRDR_SDRESP2);
- u32 dwdata3 = readl(addrbase + VIA_CRDR_SDRESP3);
- if (cmd->flags & MMC_RSP_136) {
- cmd->resp[0] = ((u8) (dwdata1)) |
- (((u8) (dwdata0 >> 24)) << 8) |
- (((u8) (dwdata0 >> 16)) << 16) |
- (((u8) (dwdata0 >> 8)) << 24);
- cmd->resp[1] = ((u8) (dwdata2)) |
- (((u8) (dwdata1 >> 24)) << 8) |
- (((u8) (dwdata1 >> 16)) << 16) |
- (((u8) (dwdata1 >> 8)) << 24);
- cmd->resp[2] = ((u8) (dwdata3)) |
- (((u8) (dwdata2 >> 24)) << 8) |
- (((u8) (dwdata2 >> 16)) << 16) |
- (((u8) (dwdata2 >> 8)) << 24);
- cmd->resp[3] = 0xff |
- ((((u8) (dwdata3 >> 24))) << 8) |
- (((u8) (dwdata3 >> 16)) << 16) |
- (((u8) (dwdata3 >> 8)) << 24);
- } else {
- dwdata0 >>= 8;
- cmd->resp[0] = ((dwdata0 & 0xff) << 24) |
- (((dwdata0 >> 8) & 0xff) << 16) |
- (((dwdata0 >> 16) & 0xff) << 8) | (dwdata1 & 0xff);
- dwdata1 >>= 8;
- cmd->resp[1] = ((dwdata1 & 0xff) << 24) |
- (((dwdata1 >> 8) & 0xff) << 16) |
- (((dwdata1 >> 16) & 0xff) << 8);
- }
- }
- static void via_sdc_send_command(struct via_crdr_mmc_host *host,
- struct mmc_command *cmd)
- {
- void __iomem *addrbase;
- struct mmc_data *data;
- unsigned int timeout_ms;
- u32 cmdctrl = 0;
- WARN_ON(host->cmd);
- data = cmd->data;
- host->cmd = cmd;
- timeout_ms = cmd->busy_timeout ? cmd->busy_timeout : VIA_CMD_TIMEOUT_MS;
- mod_timer(&host->timer, jiffies + msecs_to_jiffies(timeout_ms));
-
- cmdctrl = cmd->opcode << 8;
-
- switch (mmc_resp_type(cmd)) {
- case MMC_RSP_NONE:
- cmdctrl |= VIA_CRDR_SDCTRL_RSP_NONE;
- break;
- case MMC_RSP_R1:
- cmdctrl |= VIA_CRDR_SDCTRL_RSP_R1;
- break;
- case MMC_RSP_R1B:
- cmdctrl |= VIA_CRDR_SDCTRL_RSP_R1B;
- break;
- case MMC_RSP_R2:
- cmdctrl |= VIA_CRDR_SDCTRL_RSP_R2;
- break;
- case MMC_RSP_R3:
- cmdctrl |= VIA_CRDR_SDCTRL_RSP_R3;
- break;
- default:
- pr_err("%s: cmd->flag is not valid\n", mmc_hostname(host->mmc));
- break;
- }
- if (!(cmd->data))
- goto nodata;
- via_sdc_preparedata(host, data);
-
- if (data->blocks > 1) {
- if (data->flags & MMC_DATA_WRITE) {
- cmdctrl |= VIA_CRDR_SDCTRL_WRITE;
- cmdctrl |= VIA_CRDR_SDCTRL_MULTI_WR;
- } else {
- cmdctrl |= VIA_CRDR_SDCTRL_MULTI_RD;
- }
- } else {
- if (data->flags & MMC_DATA_WRITE) {
- cmdctrl |= VIA_CRDR_SDCTRL_WRITE;
- cmdctrl |= VIA_CRDR_SDCTRL_SINGLE_WR;
- } else {
- cmdctrl |= VIA_CRDR_SDCTRL_SINGLE_RD;
- }
- }
- nodata:
- if (cmd == host->mrq->stop)
- cmdctrl |= VIA_CRDR_SDCTRL_STOP;
- cmdctrl |= VIA_CRDR_SDCTRL_START;
- addrbase = host->sdhc_mmiobase;
- writel(cmd->arg, addrbase + VIA_CRDR_SDCARG);
- writel(cmdctrl, addrbase + VIA_CRDR_SDCTRL);
- }
- static void via_sdc_finish_data(struct via_crdr_mmc_host *host)
- {
- struct mmc_data *data;
- BUG_ON(!host->data);
- data = host->data;
- host->data = NULL;
- if (data->error)
- data->bytes_xfered = 0;
- else
- data->bytes_xfered = data->blocks * data->blksz;
- dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
- ((data->flags & MMC_DATA_READ) ?
- DMA_FROM_DEVICE : DMA_TO_DEVICE));
- if (data->stop)
- via_sdc_send_command(host, data->stop);
- else
- tasklet_schedule(&host->finish_tasklet);
- }
- static void via_sdc_finish_command(struct via_crdr_mmc_host *host)
- {
- via_sdc_get_response(host, host->cmd);
- host->cmd->error = 0;
- if (!host->cmd->data)
- tasklet_schedule(&host->finish_tasklet);
- host->cmd = NULL;
- }
- static void via_sdc_request(struct mmc_host *mmc, struct mmc_request *mrq)
- {
- void __iomem *addrbase;
- struct via_crdr_mmc_host *host;
- unsigned long flags;
- u16 status;
- host = mmc_priv(mmc);
- spin_lock_irqsave(&host->lock, flags);
- addrbase = host->pcictrl_mmiobase;
- writeb(VIA_CRDR_PCIDMACLK_SDC, addrbase + VIA_CRDR_PCIDMACLK);
- status = readw(host->sdhc_mmiobase + VIA_CRDR_SDSTATUS);
- status &= VIA_CRDR_SDSTS_W1C_MASK;
- writew(status, host->sdhc_mmiobase + VIA_CRDR_SDSTATUS);
- WARN_ON(host->mrq != NULL);
- host->mrq = mrq;
- status = readw(host->sdhc_mmiobase + VIA_CRDR_SDSTATUS);
- if (!(status & VIA_CRDR_SDSTS_SLOTG) || host->reject) {
- host->mrq->cmd->error = -ENOMEDIUM;
- tasklet_schedule(&host->finish_tasklet);
- } else {
- via_sdc_send_command(host, mrq->cmd);
- }
- spin_unlock_irqrestore(&host->lock, flags);
- }
- static void via_sdc_set_power(struct via_crdr_mmc_host *host,
- unsigned short power, unsigned int on)
- {
- unsigned long flags;
- u8 gatt;
- spin_lock_irqsave(&host->lock, flags);
- host->power = (1 << power);
- gatt = readb(host->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- if (host->power == MMC_VDD_165_195)
- gatt &= ~VIA_CRDR_PCICLKGATT_3V3;
- else
- gatt |= VIA_CRDR_PCICLKGATT_3V3;
- if (on)
- gatt |= VIA_CRDR_PCICLKGATT_PAD_PWRON;
- else
- gatt &= ~VIA_CRDR_PCICLKGATT_PAD_PWRON;
- writeb(gatt, host->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- spin_unlock_irqrestore(&host->lock, flags);
- via_pwron_sleep(host);
- }
- static void via_sdc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
- {
- struct via_crdr_mmc_host *host;
- unsigned long flags;
- void __iomem *addrbase;
- u32 org_data, sdextctrl;
- u8 clock;
- host = mmc_priv(mmc);
- spin_lock_irqsave(&host->lock, flags);
- addrbase = host->sdhc_mmiobase;
- org_data = readl(addrbase + VIA_CRDR_SDBUSMODE);
- sdextctrl = readl(addrbase + VIA_CRDR_SDEXTCTRL);
- if (ios->bus_width == MMC_BUS_WIDTH_1)
- org_data &= ~VIA_CRDR_SDMODE_4BIT;
- else
- org_data |= VIA_CRDR_SDMODE_4BIT;
- if (ios->power_mode == MMC_POWER_OFF)
- org_data &= ~VIA_CRDR_SDMODE_CLK_ON;
- else
- org_data |= VIA_CRDR_SDMODE_CLK_ON;
- if (ios->timing == MMC_TIMING_SD_HS)
- sdextctrl |= VIA_CRDR_SDEXTCTRL_HISPD;
- else
- sdextctrl &= ~VIA_CRDR_SDEXTCTRL_HISPD;
- writel(org_data, addrbase + VIA_CRDR_SDBUSMODE);
- writel(sdextctrl, addrbase + VIA_CRDR_SDEXTCTRL);
- if (ios->clock >= 48000000)
- clock = PCI_CLK_48M;
- else if (ios->clock >= 33000000)
- clock = PCI_CLK_33M;
- else if (ios->clock >= 24000000)
- clock = PCI_CLK_24M;
- else if (ios->clock >= 16000000)
- clock = PCI_CLK_16M;
- else if (ios->clock >= 12000000)
- clock = PCI_CLK_12M;
- else if (ios->clock >= 8000000)
- clock = PCI_CLK_8M;
- else
- clock = PCI_CLK_375K;
- addrbase = host->pcictrl_mmiobase;
- if (readb(addrbase + VIA_CRDR_PCISDCCLK) != clock)
- writeb(clock, addrbase + VIA_CRDR_PCISDCCLK);
- spin_unlock_irqrestore(&host->lock, flags);
- if (ios->power_mode != MMC_POWER_OFF)
- via_sdc_set_power(host, ios->vdd, 1);
- else
- via_sdc_set_power(host, ios->vdd, 0);
- }
- static int via_sdc_get_ro(struct mmc_host *mmc)
- {
- struct via_crdr_mmc_host *host;
- unsigned long flags;
- u16 status;
- host = mmc_priv(mmc);
- spin_lock_irqsave(&host->lock, flags);
- status = readw(host->sdhc_mmiobase + VIA_CRDR_SDSTATUS);
- spin_unlock_irqrestore(&host->lock, flags);
- return !(status & VIA_CRDR_SDSTS_WP);
- }
- static const struct mmc_host_ops via_sdc_ops = {
- .request = via_sdc_request,
- .set_ios = via_sdc_set_ios,
- .get_ro = via_sdc_get_ro,
- };
- static void via_reset_pcictrl(struct via_crdr_mmc_host *host)
- {
- unsigned long flags;
- u8 gatt;
- spin_lock_irqsave(&host->lock, flags);
- via_save_pcictrlreg(host);
- via_save_sdcreg(host);
- spin_unlock_irqrestore(&host->lock, flags);
- gatt = VIA_CRDR_PCICLKGATT_PAD_PWRON;
- if (host->power == MMC_VDD_165_195)
- gatt &= VIA_CRDR_PCICLKGATT_3V3;
- else
- gatt |= VIA_CRDR_PCICLKGATT_3V3;
- writeb(gatt, host->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- via_pwron_sleep(host);
- gatt |= VIA_CRDR_PCICLKGATT_SFTRST;
- writeb(gatt, host->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- msleep(3);
- spin_lock_irqsave(&host->lock, flags);
- via_restore_pcictrlreg(host);
- via_restore_sdcreg(host);
- spin_unlock_irqrestore(&host->lock, flags);
- }
- static void via_sdc_cmd_isr(struct via_crdr_mmc_host *host, u16 intmask)
- {
- BUG_ON(intmask == 0);
- if (!host->cmd) {
- pr_err("%s: Got command interrupt 0x%x even "
- "though no command operation was in progress.\n",
- mmc_hostname(host->mmc), intmask);
- return;
- }
- if (intmask & VIA_CRDR_SDSTS_CRTO)
- host->cmd->error = -ETIMEDOUT;
- else if (intmask & VIA_CRDR_SDSTS_SC)
- host->cmd->error = -EILSEQ;
- if (host->cmd->error)
- tasklet_schedule(&host->finish_tasklet);
- else if (intmask & VIA_CRDR_SDSTS_CRD)
- via_sdc_finish_command(host);
- }
- static void via_sdc_data_isr(struct via_crdr_mmc_host *host, u16 intmask)
- {
- BUG_ON(intmask == 0);
- if (!host->data)
- return;
- if (intmask & VIA_CRDR_SDSTS_DT)
- host->data->error = -ETIMEDOUT;
- else if (intmask & (VIA_CRDR_SDSTS_RC | VIA_CRDR_SDSTS_WC))
- host->data->error = -EILSEQ;
- via_sdc_finish_data(host);
- }
- static irqreturn_t via_sdc_isr(int irq, void *dev_id)
- {
- struct via_crdr_mmc_host *sdhost = dev_id;
- void __iomem *addrbase;
- u8 pci_status;
- u16 sd_status;
- irqreturn_t result;
- if (!sdhost)
- return IRQ_NONE;
- spin_lock(&sdhost->lock);
- addrbase = sdhost->pcictrl_mmiobase;
- pci_status = readb(addrbase + VIA_CRDR_PCIINTSTATUS);
- if (!(pci_status & VIA_CRDR_PCIINTSTATUS_SDC)) {
- result = IRQ_NONE;
- goto out;
- }
- addrbase = sdhost->sdhc_mmiobase;
- sd_status = readw(addrbase + VIA_CRDR_SDSTATUS);
- sd_status &= VIA_CRDR_SDSTS_INT_MASK;
- sd_status &= ~VIA_CRDR_SDSTS_IGN_MASK;
- if (!sd_status) {
- result = IRQ_NONE;
- goto out;
- }
- if (sd_status & VIA_CRDR_SDSTS_CIR) {
- writew(sd_status & VIA_CRDR_SDSTS_CIR,
- addrbase + VIA_CRDR_SDSTATUS);
- schedule_work(&sdhost->carddet_work);
- }
- sd_status &= ~VIA_CRDR_SDSTS_CIR;
- if (sd_status & VIA_CRDR_SDSTS_CMD_MASK) {
- writew(sd_status & VIA_CRDR_SDSTS_CMD_MASK,
- addrbase + VIA_CRDR_SDSTATUS);
- via_sdc_cmd_isr(sdhost, sd_status & VIA_CRDR_SDSTS_CMD_MASK);
- }
- if (sd_status & VIA_CRDR_SDSTS_DATA_MASK) {
- writew(sd_status & VIA_CRDR_SDSTS_DATA_MASK,
- addrbase + VIA_CRDR_SDSTATUS);
- via_sdc_data_isr(sdhost, sd_status & VIA_CRDR_SDSTS_DATA_MASK);
- }
- sd_status &= ~(VIA_CRDR_SDSTS_CMD_MASK | VIA_CRDR_SDSTS_DATA_MASK);
- if (sd_status) {
- pr_err("%s: Unexpected interrupt 0x%x\n",
- mmc_hostname(sdhost->mmc), sd_status);
- writew(sd_status, addrbase + VIA_CRDR_SDSTATUS);
- }
- result = IRQ_HANDLED;
- out:
- spin_unlock(&sdhost->lock);
- return result;
- }
- static void via_sdc_timeout(struct timer_list *t)
- {
- struct via_crdr_mmc_host *sdhost;
- unsigned long flags;
- sdhost = from_timer(sdhost, t, timer);
- spin_lock_irqsave(&sdhost->lock, flags);
- if (sdhost->mrq) {
- pr_err("%s: Timeout waiting for hardware interrupt."
- "cmd:0x%x\n", mmc_hostname(sdhost->mmc),
- sdhost->mrq->cmd->opcode);
- if (sdhost->data) {
- writel(VIA_CRDR_DMACTRL_SFTRST,
- sdhost->ddma_mmiobase + VIA_CRDR_DMACTRL);
- sdhost->data->error = -ETIMEDOUT;
- via_sdc_finish_data(sdhost);
- } else {
- if (sdhost->cmd)
- sdhost->cmd->error = -ETIMEDOUT;
- else
- sdhost->mrq->cmd->error = -ETIMEDOUT;
- tasklet_schedule(&sdhost->finish_tasklet);
- }
- }
- spin_unlock_irqrestore(&sdhost->lock, flags);
- }
- static void via_sdc_tasklet_finish(struct tasklet_struct *t)
- {
- struct via_crdr_mmc_host *host = from_tasklet(host, t, finish_tasklet);
- unsigned long flags;
- struct mmc_request *mrq;
- spin_lock_irqsave(&host->lock, flags);
- del_timer(&host->timer);
- mrq = host->mrq;
- host->mrq = NULL;
- host->cmd = NULL;
- host->data = NULL;
- spin_unlock_irqrestore(&host->lock, flags);
- mmc_request_done(host->mmc, mrq);
- }
- static void via_sdc_card_detect(struct work_struct *work)
- {
- struct via_crdr_mmc_host *host;
- void __iomem *addrbase;
- unsigned long flags;
- u16 status;
- host = container_of(work, struct via_crdr_mmc_host, carddet_work);
- addrbase = host->ddma_mmiobase;
- writel(VIA_CRDR_DMACTRL_SFTRST, addrbase + VIA_CRDR_DMACTRL);
- spin_lock_irqsave(&host->lock, flags);
- addrbase = host->pcictrl_mmiobase;
- writeb(VIA_CRDR_PCIDMACLK_SDC, addrbase + VIA_CRDR_PCIDMACLK);
- addrbase = host->sdhc_mmiobase;
- status = readw(addrbase + VIA_CRDR_SDSTATUS);
- if (!(status & VIA_CRDR_SDSTS_SLOTG)) {
- if (host->mrq) {
- pr_err("%s: Card removed during transfer!\n",
- mmc_hostname(host->mmc));
- host->mrq->cmd->error = -ENOMEDIUM;
- tasklet_schedule(&host->finish_tasklet);
- }
- spin_unlock_irqrestore(&host->lock, flags);
- via_reset_pcictrl(host);
- spin_lock_irqsave(&host->lock, flags);
- }
- spin_unlock_irqrestore(&host->lock, flags);
- via_print_pcictrl(host);
- via_print_sdchc(host);
- mmc_detect_change(host->mmc, msecs_to_jiffies(500));
- }
- static void via_init_mmc_host(struct via_crdr_mmc_host *host)
- {
- struct mmc_host *mmc = host->mmc;
- void __iomem *addrbase;
- u32 lenreg;
- u32 status;
- timer_setup(&host->timer, via_sdc_timeout, 0);
- spin_lock_init(&host->lock);
- mmc->f_min = VIA_CRDR_MIN_CLOCK;
- mmc->f_max = VIA_CRDR_MAX_CLOCK;
- mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
- mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SD_HIGHSPEED;
- mmc->ops = &via_sdc_ops;
-
- mmc->max_segs = 1;
- mmc->max_blk_size = VIA_CRDR_MAX_BLOCK_LENGTH;
- mmc->max_blk_count = VIA_CRDR_MAX_BLOCK_COUNT;
- mmc->max_seg_size = mmc->max_blk_size * mmc->max_blk_count;
- mmc->max_req_size = mmc->max_seg_size;
- INIT_WORK(&host->carddet_work, via_sdc_card_detect);
- tasklet_setup(&host->finish_tasklet, via_sdc_tasklet_finish);
- addrbase = host->sdhc_mmiobase;
- writel(0x0, addrbase + VIA_CRDR_SDINTMASK);
- msleep(1);
- lenreg = VIA_CRDR_SDBLKLEN_GPIDET | VIA_CRDR_SDBLKLEN_INTEN;
- writel(lenreg, addrbase + VIA_CRDR_SDBLKLEN);
- status = readw(addrbase + VIA_CRDR_SDSTATUS);
- status &= VIA_CRDR_SDSTS_W1C_MASK;
- writew(status, addrbase + VIA_CRDR_SDSTATUS);
- status = readw(addrbase + VIA_CRDR_SDSTATUS2);
- status |= VIA_CRDR_SDSTS_CFE;
- writew(status, addrbase + VIA_CRDR_SDSTATUS2);
- writeb(0x0, addrbase + VIA_CRDR_SDEXTCTRL);
- writel(VIA_CRDR_SDACTIVE_INTMASK, addrbase + VIA_CRDR_SDINTMASK);
- msleep(1);
- }
- static int via_sd_probe(struct pci_dev *pcidev,
- const struct pci_device_id *id)
- {
- struct mmc_host *mmc;
- struct via_crdr_mmc_host *sdhost;
- u32 base, len;
- u8 gatt;
- int ret;
- pr_info(DRV_NAME
- ": VIA SDMMC controller found at %s [%04x:%04x] (rev %x)\n",
- pci_name(pcidev), (int)pcidev->vendor, (int)pcidev->device,
- (int)pcidev->revision);
- ret = pci_enable_device(pcidev);
- if (ret)
- return ret;
- ret = pci_request_regions(pcidev, DRV_NAME);
- if (ret)
- goto disable;
- pci_write_config_byte(pcidev, VIA_CRDR_PCI_WORK_MODE, 0);
- pci_write_config_byte(pcidev, VIA_CRDR_PCI_DBG_MODE, 0);
- mmc = mmc_alloc_host(sizeof(struct via_crdr_mmc_host), &pcidev->dev);
- if (!mmc) {
- ret = -ENOMEM;
- goto release;
- }
- sdhost = mmc_priv(mmc);
- sdhost->mmc = mmc;
- dev_set_drvdata(&pcidev->dev, sdhost);
- len = pci_resource_len(pcidev, 0);
- base = pci_resource_start(pcidev, 0);
- sdhost->mmiobase = ioremap(base, len);
- if (!sdhost->mmiobase) {
- ret = -ENOMEM;
- goto free_mmc_host;
- }
- sdhost->sdhc_mmiobase =
- sdhost->mmiobase + VIA_CRDR_SDC_OFF;
- sdhost->ddma_mmiobase =
- sdhost->mmiobase + VIA_CRDR_DDMA_OFF;
- sdhost->pcictrl_mmiobase =
- sdhost->mmiobase + VIA_CRDR_PCICTRL_OFF;
- sdhost->power = MMC_VDD_165_195;
- gatt = VIA_CRDR_PCICLKGATT_3V3 | VIA_CRDR_PCICLKGATT_PAD_PWRON;
- writeb(gatt, sdhost->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- via_pwron_sleep(sdhost);
- gatt |= VIA_CRDR_PCICLKGATT_SFTRST;
- writeb(gatt, sdhost->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- msleep(3);
- via_init_mmc_host(sdhost);
- ret =
- request_irq(pcidev->irq, via_sdc_isr, IRQF_SHARED, DRV_NAME,
- sdhost);
- if (ret)
- goto unmap;
- writeb(VIA_CRDR_PCIINTCTRL_SDCIRQEN,
- sdhost->pcictrl_mmiobase + VIA_CRDR_PCIINTCTRL);
- writeb(VIA_CRDR_PCITMOCTRL_1024MS,
- sdhost->pcictrl_mmiobase + VIA_CRDR_PCITMOCTRL);
-
- if (pcidev->subsystem_vendor == PCI_VENDOR_ID_LENOVO &&
- pcidev->subsystem_device == 0x3891)
- sdhost->quirks = VIA_CRDR_QUIRK_300MS_PWRDELAY;
- ret = mmc_add_host(mmc);
- if (ret)
- goto unmap;
- return 0;
- unmap:
- iounmap(sdhost->mmiobase);
- free_mmc_host:
- dev_set_drvdata(&pcidev->dev, NULL);
- mmc_free_host(mmc);
- release:
- pci_release_regions(pcidev);
- disable:
- pci_disable_device(pcidev);
- return ret;
- }
- static void via_sd_remove(struct pci_dev *pcidev)
- {
- struct via_crdr_mmc_host *sdhost = pci_get_drvdata(pcidev);
- unsigned long flags;
- u8 gatt;
- spin_lock_irqsave(&sdhost->lock, flags);
-
- sdhost->reject = 1;
-
- writeb(0x0, sdhost->pcictrl_mmiobase + VIA_CRDR_PCIINTCTRL);
- if (sdhost->mrq) {
- pr_err("%s: Controller removed during "
- "transfer\n", mmc_hostname(sdhost->mmc));
-
- writel(VIA_CRDR_DMACTRL_SFTRST,
- sdhost->ddma_mmiobase + VIA_CRDR_DMACTRL);
- sdhost->mrq->cmd->error = -ENOMEDIUM;
- if (sdhost->mrq->stop)
- sdhost->mrq->stop->error = -ENOMEDIUM;
- tasklet_schedule(&sdhost->finish_tasklet);
- }
- spin_unlock_irqrestore(&sdhost->lock, flags);
- mmc_remove_host(sdhost->mmc);
- free_irq(pcidev->irq, sdhost);
- del_timer_sync(&sdhost->timer);
- tasklet_kill(&sdhost->finish_tasklet);
-
- gatt = readb(sdhost->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- gatt &= ~VIA_CRDR_PCICLKGATT_PAD_PWRON;
- writeb(gatt, sdhost->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- iounmap(sdhost->mmiobase);
- dev_set_drvdata(&pcidev->dev, NULL);
- mmc_free_host(sdhost->mmc);
- pci_release_regions(pcidev);
- pci_disable_device(pcidev);
- pr_info(DRV_NAME
- ": VIA SDMMC controller at %s [%04x:%04x] has been removed\n",
- pci_name(pcidev), (int)pcidev->vendor, (int)pcidev->device);
- }
- static void __maybe_unused via_init_sdc_pm(struct via_crdr_mmc_host *host)
- {
- struct sdhcreg *pm_sdhcreg;
- void __iomem *addrbase;
- u32 lenreg;
- u16 status;
- pm_sdhcreg = &(host->pm_sdhc_reg);
- addrbase = host->sdhc_mmiobase;
- writel(0x0, addrbase + VIA_CRDR_SDINTMASK);
- lenreg = VIA_CRDR_SDBLKLEN_GPIDET | VIA_CRDR_SDBLKLEN_INTEN;
- writel(lenreg, addrbase + VIA_CRDR_SDBLKLEN);
- status = readw(addrbase + VIA_CRDR_SDSTATUS);
- status &= VIA_CRDR_SDSTS_W1C_MASK;
- writew(status, addrbase + VIA_CRDR_SDSTATUS);
- status = readw(addrbase + VIA_CRDR_SDSTATUS2);
- status |= VIA_CRDR_SDSTS_CFE;
- writew(status, addrbase + VIA_CRDR_SDSTATUS2);
- writel(pm_sdhcreg->sdcontrol_reg, addrbase + VIA_CRDR_SDCTRL);
- writel(pm_sdhcreg->sdcmdarg_reg, addrbase + VIA_CRDR_SDCARG);
- writel(pm_sdhcreg->sdintmask_reg, addrbase + VIA_CRDR_SDINTMASK);
- writel(pm_sdhcreg->sdrsptmo_reg, addrbase + VIA_CRDR_SDRSPTMO);
- writel(pm_sdhcreg->sdclksel_reg, addrbase + VIA_CRDR_SDCLKSEL);
- writel(pm_sdhcreg->sdextctrl_reg, addrbase + VIA_CRDR_SDEXTCTRL);
- via_print_pcictrl(host);
- via_print_sdchc(host);
- }
- static int __maybe_unused via_sd_suspend(struct device *dev)
- {
- struct via_crdr_mmc_host *host;
- unsigned long flags;
- host = dev_get_drvdata(dev);
- spin_lock_irqsave(&host->lock, flags);
- via_save_pcictrlreg(host);
- via_save_sdcreg(host);
- spin_unlock_irqrestore(&host->lock, flags);
- device_wakeup_enable(dev);
- return 0;
- }
- static int __maybe_unused via_sd_resume(struct device *dev)
- {
- struct via_crdr_mmc_host *sdhost;
- u8 gatt;
- sdhost = dev_get_drvdata(dev);
- gatt = VIA_CRDR_PCICLKGATT_PAD_PWRON;
- if (sdhost->power == MMC_VDD_165_195)
- gatt &= ~VIA_CRDR_PCICLKGATT_3V3;
- else
- gatt |= VIA_CRDR_PCICLKGATT_3V3;
- writeb(gatt, sdhost->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- via_pwron_sleep(sdhost);
- gatt |= VIA_CRDR_PCICLKGATT_SFTRST;
- writeb(gatt, sdhost->pcictrl_mmiobase + VIA_CRDR_PCICLKGATT);
- msleep(3);
- msleep(100);
- via_restore_pcictrlreg(sdhost);
- via_init_sdc_pm(sdhost);
- return 0;
- }
- static SIMPLE_DEV_PM_OPS(via_sd_pm_ops, via_sd_suspend, via_sd_resume);
- static struct pci_driver via_sd_driver = {
- .name = DRV_NAME,
- .id_table = via_ids,
- .probe = via_sd_probe,
- .remove = via_sd_remove,
- .driver.pm = &via_sd_pm_ops,
- };
- module_pci_driver(via_sd_driver);
- MODULE_LICENSE("GPL");
- MODULE_AUTHOR("VIA Technologies Inc.");
- MODULE_DESCRIPTION("VIA SD/MMC Card Interface driver");
|