···11-obj-y += io.o idle.o irq.o timer.o11+obj-y += io.o idle.o irq.o timer.o dma.o2233# Common code for board init44obj-y += common.o
+214
arch/arm/mach-msm/dma.c
···11+/* linux/arch/arm/mach-msm/dma.c22+ *33+ * Copyright (C) 2007 Google, Inc.44+ *55+ * This software is licensed under the terms of the GNU General Public66+ * License version 2, as published by the Free Software Foundation, and77+ * may be copied, distributed, and modified under those terms.88+ *99+ * This program is distributed in the hope that it will be useful,1010+ * but WITHOUT ANY WARRANTY; without even the implied warranty of1111+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1212+ * GNU General Public License for more details.1313+ *1414+ */1515+1616+#include <asm/io.h>1717+#include <linux/interrupt.h>1818+#include <asm/arch/dma.h>1919+2020+#define MSM_DMOV_CHANNEL_COUNT 162121+2222+enum {2323+ MSM_DMOV_PRINT_ERRORS = 1,2424+ MSM_DMOV_PRINT_IO = 2,2525+ MSM_DMOV_PRINT_FLOW = 42626+};2727+2828+static DEFINE_SPINLOCK(msm_dmov_lock);2929+static struct msm_dmov_cmd active_command;3030+static struct list_head ready_commands[MSM_DMOV_CHANNEL_COUNT];3131+static struct list_head active_commands[MSM_DMOV_CHANNEL_COUNT];3232+unsigned int msm_dmov_print_mask = MSM_DMOV_PRINT_ERRORS;3333+3434+#define MSM_DMOV_DPRINTF(mask, format, args...) \3535+ do { \3636+ if ((mask) & msm_dmov_print_mask) \3737+ printk(KERN_ERR format, args); \3838+ } while (0)3939+#define PRINT_ERROR(format, args...) \4040+ MSM_DMOV_DPRINTF(MSM_DMOV_PRINT_ERRORS, format, args);4141+#define PRINT_IO(format, args...) \4242+ MSM_DMOV_DPRINTF(MSM_DMOV_PRINT_IO, format, args);4343+#define PRINT_FLOW(format, args...) \4444+ MSM_DMOV_DPRINTF(MSM_DMOV_PRINT_FLOW, format, args);4545+4646+void msm_dmov_enqueue_cmd(unsigned id, struct msm_dmov_cmd *cmd)4747+{4848+ unsigned long irq_flags;4949+ unsigned int status;5050+5151+ spin_lock_irqsave(&msm_dmov_lock, irq_flags);5252+ status = readl(DMOV_STATUS(id));5353+ if (list_empty(&ready_commands[id]) &&5454+ (status & DMOV_STATUS_CMD_PTR_RDY)) {5555+#if 05656+ if (list_empty(&active_commands[id])) {5757+ PRINT_FLOW("msm_dmov_enqueue_cmd(%d), enable interrupt\n", id);5858+ writel(DMOV_CONFIG_IRQ_EN, DMOV_CONFIG(id));5959+ }6060+#endif6161+ PRINT_IO("msm_dmov_enqueue_cmd(%d), start command, status %x\n", id, status);6262+ list_add_tail(&cmd->list, &active_commands[id]);6363+ writel(cmd->cmdptr, DMOV_CMD_PTR(id));6464+ } else {6565+ if (list_empty(&active_commands[id]))6666+ PRINT_ERROR("msm_dmov_enqueue_cmd(%d), error datamover stalled, status %x\n", id, status);6767+6868+ PRINT_IO("msm_dmov_enqueue_cmd(%d), enqueue command, status %x\n", id, status);6969+ list_add_tail(&cmd->list, &ready_commands[id]);7070+ }7171+ spin_unlock_irqrestore(&msm_dmov_lock, irq_flags);7272+}7373+7474+struct msm_dmov_exec_cmdptr_cmd {7575+ struct msm_dmov_cmd dmov_cmd;7676+ struct completion complete;7777+ unsigned id;7878+ unsigned int result;7979+ unsigned int flush[6];8080+};8181+8282+static void dmov_exec_cmdptr_complete_func(struct msm_dmov_cmd *_cmd, unsigned int result)8383+{8484+ struct msm_dmov_exec_cmdptr_cmd *cmd = container_of(_cmd, struct msm_dmov_exec_cmdptr_cmd, dmov_cmd);8585+ cmd->result = result;8686+ if (result != 0x80000002) {8787+ cmd->flush[0] = readl(DMOV_FLUSH0(cmd->id));8888+ cmd->flush[1] = readl(DMOV_FLUSH1(cmd->id));8989+ cmd->flush[2] = readl(DMOV_FLUSH2(cmd->id));9090+ cmd->flush[3] = readl(DMOV_FLUSH3(cmd->id));9191+ cmd->flush[4] = readl(DMOV_FLUSH4(cmd->id));9292+ cmd->flush[5] = readl(DMOV_FLUSH5(cmd->id));9393+ }9494+ complete(&cmd->complete);9595+}9696+9797+int msm_dmov_exec_cmd(unsigned id, unsigned int cmdptr)9898+{9999+ struct msm_dmov_exec_cmdptr_cmd cmd;100100+101101+ PRINT_FLOW("dmov_exec_cmdptr(%d, %x)\n", id, cmdptr);102102+103103+ cmd.dmov_cmd.cmdptr = cmdptr;104104+ cmd.dmov_cmd.complete_func = dmov_exec_cmdptr_complete_func;105105+ cmd.id = id;106106+ init_completion(&cmd.complete);107107+108108+ msm_dmov_enqueue_cmd(id, &cmd.dmov_cmd);109109+ wait_for_completion(&cmd.complete);110110+111111+ if (cmd.result != 0x80000002) {112112+ PRINT_ERROR("dmov_exec_cmdptr(%d): ERROR, result: %x\n", id, cmd.result);113113+ PRINT_ERROR("dmov_exec_cmdptr(%d): flush: %x %x %x %x\n",114114+ id, cmd.flush[0], cmd.flush[1], cmd.flush[2], cmd.flush[3]);115115+ return -EIO;116116+ }117117+ PRINT_FLOW("dmov_exec_cmdptr(%d, %x) done\n", id, cmdptr);118118+ return 0;119119+}120120+121121+122122+static irqreturn_t msm_datamover_irq_handler(int irq, void *dev_id)123123+{124124+ unsigned int int_status, mask, id;125125+ unsigned long irq_flags;126126+ unsigned int ch_status;127127+ unsigned int ch_result;128128+ struct msm_dmov_cmd *cmd;129129+130130+ spin_lock_irqsave(&msm_dmov_lock, irq_flags);131131+132132+ int_status = readl(DMOV_ISR); /* read and clear interrupt */133133+ PRINT_FLOW("msm_datamover_irq_handler: DMOV_ISR %x\n", int_status);134134+135135+ while (int_status) {136136+ mask = int_status & -int_status;137137+ id = fls(mask) - 1;138138+ PRINT_FLOW("msm_datamover_irq_handler %08x %08x id %d\n", int_status, mask, id);139139+ int_status &= ~mask;140140+ ch_status = readl(DMOV_STATUS(id));141141+ if (!(ch_status & DMOV_STATUS_RSLT_VALID)) {142142+ PRINT_FLOW("msm_datamover_irq_handler id %d, result not valid %x\n", id, ch_status);143143+ continue;144144+ }145145+ do {146146+ ch_result = readl(DMOV_RSLT(id));147147+ if (list_empty(&active_commands[id])) {148148+ PRINT_ERROR("msm_datamover_irq_handler id %d, got result "149149+ "with no active command, status %x, result %x\n",150150+ id, ch_status, ch_result);151151+ cmd = NULL;152152+ } else153153+ cmd = list_entry(active_commands[id].next, typeof(*cmd), list);154154+ PRINT_FLOW("msm_datamover_irq_handler id %d, status %x, result %x\n", id, ch_status, ch_result);155155+ if (ch_result & DMOV_RSLT_DONE) {156156+ PRINT_FLOW("msm_datamover_irq_handler id %d, status %x\n",157157+ id, ch_status);158158+ PRINT_IO("msm_datamover_irq_handler id %d, got result "159159+ "for %p, result %x\n", id, cmd, ch_result);160160+ if (cmd) {161161+ list_del(&cmd->list);162162+ cmd->complete_func(cmd, ch_result);163163+ }164164+ }165165+ if (ch_result & DMOV_RSLT_FLUSH) {166166+ unsigned int flush0 = readl(DMOV_FLUSH0(id));167167+ PRINT_FLOW("msm_datamover_irq_handler id %d, status %x\n", id, ch_status);168168+ PRINT_FLOW("msm_datamover_irq_handler id %d, flush, result %x, flush0 %x\n", id, ch_result, flush0);169169+ if (cmd) {170170+ list_del(&cmd->list);171171+ cmd->complete_func(cmd, ch_result);172172+ }173173+ }174174+ if (ch_result & DMOV_RSLT_ERROR) {175175+ unsigned int flush0 = readl(DMOV_FLUSH0(id));176176+ PRINT_ERROR("msm_datamover_irq_handler id %d, status %x\n", id, ch_status);177177+ PRINT_ERROR("msm_datamover_irq_handler id %d, error, result %x, flush0 %x\n", id, ch_result, flush0);178178+ if (cmd) {179179+ list_del(&cmd->list);180180+ cmd->complete_func(cmd, ch_result);181181+ }182182+ /* this does not seem to work, once we get an error */183183+ /* the datamover will no longer accept commands */184184+ writel(0, DMOV_FLUSH0(id));185185+ }186186+ ch_status = readl(DMOV_STATUS(id));187187+ PRINT_FLOW("msm_datamover_irq_handler id %d, status %x\n", id, ch_status);188188+ if ((ch_status & DMOV_STATUS_CMD_PTR_RDY) && !list_empty(&ready_commands[id])) {189189+ cmd = list_entry(ready_commands[id].next, typeof(*cmd), list);190190+ list_del(&cmd->list);191191+ list_add_tail(&cmd->list, &active_commands[id]);192192+ PRINT_FLOW("msm_datamover_irq_handler id %d, start command\n", id);193193+ writel(cmd->cmdptr, DMOV_CMD_PTR(id));194194+ }195195+ } while (ch_status & DMOV_STATUS_RSLT_VALID);196196+ PRINT_FLOW("msm_datamover_irq_handler id %d, status %x\n", id, ch_status);197197+ }198198+ spin_unlock_irqrestore(&msm_dmov_lock, irq_flags);199199+ return IRQ_HANDLED;200200+}201201+202202+static int __init msm_init_datamover(void)203203+{204204+ int i;205205+ for (i = 0; i < MSM_DMOV_CHANNEL_COUNT; i++) {206206+ INIT_LIST_HEAD(&ready_commands[i]);207207+ INIT_LIST_HEAD(&active_commands[i]);208208+ writel(DMOV_CONFIG_IRQ_EN | DMOV_CONFIG_FORCE_TOP_PTR_RSLT | DMOV_CONFIG_FORCE_FLUSH_RSLT, DMOV_CONFIG(i));209209+ }210210+ return request_irq(INT_ADM_AARM, msm_datamover_irq_handler, 0, "msmdatamover", NULL);211211+}212212+213213+arch_initcall(msm_init_datamover);214214+
+150
include/asm-arm/arch-msm/dma.h
···11+/* linux/include/asm-arm/arch-msm/dma.h22+ *33+ * Copyright (C) 2007 Google, Inc.44+ *55+ * This software is licensed under the terms of the GNU General Public66+ * License version 2, as published by the Free Software Foundation, and77+ * may be copied, distributed, and modified under those terms.88+ *99+ * This program is distributed in the hope that it will be useful,1010+ * but WITHOUT ANY WARRANTY; without even the implied warranty of1111+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the1212+ * GNU General Public License for more details.1313+ *1414+ */1151616+#ifndef __ASM_ARCH_MSM_DMA_H1717+1818+#include <linux/list.h>1919+#include <asm/arch/msm_iomap.h>2020+2121+struct msm_dmov_cmd {2222+ struct list_head list;2323+ unsigned int cmdptr;2424+ void (*complete_func)(struct msm_dmov_cmd *cmd, unsigned int result);2525+/* void (*user_result_func)(struct msm_dmov_cmd *cmd); */2626+};2727+2828+void msm_dmov_enqueue_cmd(unsigned id, struct msm_dmov_cmd *cmd);2929+void msm_dmov_stop_cmd(unsigned id, struct msm_dmov_cmd *cmd);3030+int msm_dmov_exec_cmd(unsigned id, unsigned int cmdptr);3131+/* int msm_dmov_exec_cmd_etc(unsigned id, unsigned int cmdptr, int timeout, int interruptible); */3232+3333+3434+3535+#define DMOV_SD0(off, ch) (MSM_DMOV_BASE + 0x0000 + (off) + ((ch) << 2))3636+#define DMOV_SD1(off, ch) (MSM_DMOV_BASE + 0x0400 + (off) + ((ch) << 2))3737+#define DMOV_SD2(off, ch) (MSM_DMOV_BASE + 0x0800 + (off) + ((ch) << 2))3838+#define DMOV_SD3(off, ch) (MSM_DMOV_BASE + 0x0C00 + (off) + ((ch) << 2))3939+4040+/* only security domain 3 is available to the ARM114141+ * SD0 -> mARM trusted, SD1 -> mARM nontrusted, SD2 -> aDSP, SD3 -> aARM4242+ */4343+4444+#define DMOV_CMD_PTR(ch) DMOV_SD3(0x000, ch)4545+#define DMOV_CMD_LIST (0 << 29) /* does not work */4646+#define DMOV_CMD_PTR_LIST (1 << 29) /* works */4747+#define DMOV_CMD_INPUT_CFG (2 << 29) /* untested */4848+#define DMOV_CMD_OUTPUT_CFG (3 << 29) /* untested */4949+#define DMOV_CMD_ADDR(addr) ((addr) >> 3)5050+5151+#define DMOV_RSLT(ch) DMOV_SD3(0x040, ch)5252+#define DMOV_RSLT_VALID (1 << 31) /* 0 == host has empties result fifo */5353+#define DMOV_RSLT_ERROR (1 << 3)5454+#define DMOV_RSLT_FLUSH (1 << 2)5555+#define DMOV_RSLT_DONE (1 << 1) /* top pointer done */5656+#define DMOV_RSLT_USER (1 << 0) /* command with FR force result */5757+5858+#define DMOV_FLUSH0(ch) DMOV_SD3(0x080, ch)5959+#define DMOV_FLUSH1(ch) DMOV_SD3(0x0C0, ch)6060+#define DMOV_FLUSH2(ch) DMOV_SD3(0x100, ch)6161+#define DMOV_FLUSH3(ch) DMOV_SD3(0x140, ch)6262+#define DMOV_FLUSH4(ch) DMOV_SD3(0x180, ch)6363+#define DMOV_FLUSH5(ch) DMOV_SD3(0x1C0, ch)6464+6565+#define DMOV_STATUS(ch) DMOV_SD3(0x200, ch)6666+#define DMOV_STATUS_RSLT_COUNT(n) (((n) >> 29))6767+#define DMOV_STATUS_CMD_COUNT(n) (((n) >> 27) & 3)6868+#define DMOV_STATUS_RSLT_VALID (1 << 1)6969+#define DMOV_STATUS_CMD_PTR_RDY (1 << 0)7070+7171+#define DMOV_ISR DMOV_SD3(0x380, 0)7272+7373+#define DMOV_CONFIG(ch) DMOV_SD3(0x300, ch)7474+#define DMOV_CONFIG_FORCE_TOP_PTR_RSLT (1 << 2)7575+#define DMOV_CONFIG_FORCE_FLUSH_RSLT (1 << 1)7676+#define DMOV_CONFIG_IRQ_EN (1 << 0)7777+7878+/* channel assignments */7979+8080+#define DMOV_NAND_CHAN 78181+#define DMOV_NAND_CRCI_CMD 58282+#define DMOV_NAND_CRCI_DATA 48383+8484+#define DMOV_SDC1_CHAN 88585+#define DMOV_SDC1_CRCI 68686+8787+#define DMOV_SDC2_CHAN 88888+#define DMOV_SDC2_CRCI 78989+9090+#define DMOV_TSIF_CHAN 109191+#define DMOV_TSIF_CRCI 109292+9393+#define DMOV_USB_CHAN 119494+9595+/* no client rate control ifc (eg, ram) */9696+#define DMOV_NONE_CRCI 09797+9898+9999+/* If the CMD_PTR register has CMD_PTR_LIST selected, the data mover100100+ * is going to walk a list of 32bit pointers as described below. Each101101+ * pointer points to a *array* of dmov_s, etc structs. The last pointer102102+ * in the list is marked with CMD_PTR_LP. The last struct in each array103103+ * is marked with CMD_LC (see below).104104+ */105105+#define CMD_PTR_ADDR(addr) ((addr) >> 3)106106+#define CMD_PTR_LP (1 << 31) /* last pointer */107107+#define CMD_PTR_PT (3 << 29) /* ? */108108+109109+/* Single Item Mode */110110+typedef struct {111111+ unsigned cmd;112112+ unsigned src;113113+ unsigned dst;114114+ unsigned len;115115+} dmov_s;116116+117117+/* Scatter/Gather Mode */118118+typedef struct {119119+ unsigned cmd;120120+ unsigned src_dscr;121121+ unsigned dst_dscr;122122+ unsigned _reserved;123123+} dmov_sg;124124+125125+/* bits for the cmd field of the above structures */126126+127127+#define CMD_LC (1 << 31) /* last command */128128+#define CMD_FR (1 << 22) /* force result -- does not work? */129129+#define CMD_OCU (1 << 21) /* other channel unblock */130130+#define CMD_OCB (1 << 20) /* other channel block */131131+#define CMD_TCB (1 << 19) /* ? */132132+#define CMD_DAH (1 << 18) /* destination address hold -- does not work?*/133133+#define CMD_SAH (1 << 17) /* source address hold -- does not work? */134134+135135+#define CMD_MODE_SINGLE (0 << 0) /* dmov_s structure used */136136+#define CMD_MODE_SG (1 << 0) /* untested */137137+#define CMD_MODE_IND_SG (2 << 0) /* untested */138138+#define CMD_MODE_BOX (3 << 0) /* untested */139139+140140+#define CMD_DST_SWAP_BYTES (1 << 14) /* exchange each byte n with byte n+1 */141141+#define CMD_DST_SWAP_SHORTS (1 << 15) /* exchange each short n with short n+1 */142142+#define CMD_DST_SWAP_WORDS (1 << 16) /* exchange each word n with word n+1 */143143+144144+#define CMD_SRC_SWAP_BYTES (1 << 11) /* exchange each byte n with byte n+1 */145145+#define CMD_SRC_SWAP_SHORTS (1 << 12) /* exchange each short n with short n+1 */146146+#define CMD_SRC_SWAP_WORDS (1 << 13) /* exchange each word n with word n+1 */147147+148148+#define CMD_DST_CRCI(n) (((n) & 15) << 7)149149+#define CMD_SRC_CRCI(n) (((n) & 15) << 3)150150+151151+#endif