您的位置 首页 产品

Embeded linux中的MMC驱动

Embeded linux中的MMC驱动-Embeded linux中的MMC驱动

一、注册渠道设备

platform_device_register(&usr_mci_device);

二、填写渠道设备结构体

static struct platform_device usr_mci_device= {

.name          = “xxx”,

.id             = 0,

.dev = {

.release     = usr_mci_platdev_release,

.dma_mask  = &usr_mmc_dmamask,

.coherent_dma_mask = DMA_BIT_MASK(32),

},

.num_resources    = ARRAY_SIZE(usr_mci_resources),

.resource          = usr_mci_resources,

};

三、填写资源结构体(物理地址查芯片手册)

staTIc struct resource usr_mci_resources[] = {

[0] = {

.start          = CONFIG_USR_IOBASE,

.end            = CONFIG_USR_IOBASE + USR_MCI_IO_SIZE – 1,

.flags          = IORESOURCE_MEM,

},

[1] = {

.start          = CONFIG_USR_INTR,

.end            = CONFIG_USR_INTR,

.flags          = IORESOURCE_IRQ,

},

};

四、注册渠道驱动

platform_driver_register(&usr_mci_driver);

五、填写渠道驱动结构体

staTIc struct platform_driver usr_mci_driver= {
.probe = usr_mci_probe,
.remove = usr_mci_remove,
.suspend = usr_mci_suspend,
.resume = usr_mci_resume,
.driver = {
.name = DRIVER_NAME,
},
};

六、重写probe函数

staTIc int __devinit usr_mci_probe(struct platform_device *pdev)

七、创立一个自己的设备结构体

struct usr_host {
struct mmc_host *mmc;
spinlock_t lock;
struct mmc_request *mrq;
struct mmc_command *cmd;
struct mmc_data *data;
void __iomem *base;
unsigned int card_status;
struct scatterlist *dma_sg;
unsigned int dma_sg_num;
unsigned int dma_alloc_size;
unsigned int dma_dir;
dma_addr_t dma_paddr;
unsigned int *dma_vaddr;
struct TImer_list timer;
unsigned int irq;
unsigned int irq_status;
unsigned int is_tuning;
wait_queue_head_t intr_wait;
unsigned long pending_events;
unsigned int id;

};

struct usr_host *host;

八、分配一个包含了mmc_host的自定义结构体(core需求)

struct mmc_host *mmc;

mmc = mmc_alloc_host(sizeof(struct usr_host), &pdev->dev);

九、初始化mmc_host结构体

mmc->ops

mmc->f_min

mmc->f_max

mmc->caps

mmc->max_blk_count

mmc->max_segs

mmc->max_seg_size

mmc->max_req_size

mmc->ocr_avail

mmc->ocr

十、初始化usr_host

host=mmc->private;

host->dma_vaddr = dma_alloc_coherent(&pdev->dev, PAGE_SIZE,&host->dma_paddr, GFP_KERNEL);

host->mmc = mmc;

host->id

host->base

十一、初始化SDIO的时钟、驱动才能

十二、SDIO复位

十三、SDIO重上电

十四、设置时钟相位

十五、设置阈值

十六、设置中止状况

十七、设置中止屏蔽

十八、设置DMA搬移数据

十九、设置大局中止使能

二十、设置FIFO突发长度与FIFO巨细

二十一、卡检测

二十二、初始化守时器,守时处理函数为卡检测

二十三、获取资源结构体的软中止号

二十四、初始化等候行列

init_waitqueue_head(&host->intr_wait);

二十五、request_irq注册中止

二十六、写中止函数(唤醒等候行列)

static irqreturn_t usr_irq(int irq, void *dev_id)

{

wake_up(&host->intr_wait);

}

 

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/xinpin/chanpin/89839.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部