/* * TXx9 SoC AC Link Controller * * 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. */ #ifndef __TXX9ACLC_H #define __TXX9ACLC_H #include #include #define ACCTLEN 0x00 /* control enable */ #define ACCTLDIS 0x04 /* control disable */ #define ACCTL_ENLINK 0x00000001 /* enable/disable AC-link */ #define ACCTL_AUDODMA 0x00000100 /* AUDODMA enable/disable */ #define ACCTL_AUDIDMA 0x00001000 /* AUDIDMA enable/disable */ #define ACCTL_AUDOEHLT 0x00010000 /* AUDO error halt enable/disable */ #define ACCTL_AUDIEHLT 0x00100000 /* AUDI error halt enable/disable */ #define ACREGACC 0x08 /* codec register access */ #define ACREGACC_DAT_SHIFT 0 /* data field */ #define ACREGACC_REG_SHIFT 16 /* address field */ #define ACREGACC_CODECID_SHIFT 24 /* CODEC ID field */ #define ACREGACC_READ 0x80000000 /* CODEC read */ #define ACREGACC_WRITE 0x00000000 /* CODEC write */ #define ACINTSTS 0x10 /* interrupt status */ #define ACINTMSTS 0x14 /* interrupt masked status */ #define ACINTEN 0x18 /* interrupt enable */ #define ACINTDIS 0x1c /* interrupt disable */ #define ACINT_CODECRDY(n) (0x00000001 << (n)) /* CODECn ready */ #define ACINT_REGACCRDY 0x00000010 /* ACREGACC ready */ #define ACINT_AUDOERR 0x00000100 /* AUDO underrun error */ #define ACINT_AUDIERR 0x00001000 /* AUDI overrun error */ #define ACDMASTS 0x80 /* DMA request status */ #define ACDMA_AUDO 0x00000001 /* AUDODMA pending */ #define ACDMA_AUDI 0x00000010 /* AUDIDMA pending */ #define ACAUDODAT 0xa0 /* audio out data */ #define ACAUDIDAT 0xb0 /* audio in data */ #define ACREVID 0xfc /* revision ID */ struct txx9aclc_dmadata { struct resource *dma_res; struct txx9dmac_slave dma_slave; struct dma_chan *dma_chan; struct tasklet_struct tasklet; spinlock_t dma_lock; int stream; /* SNDRV_PCM_STREAM_PLAYBACK or SNDRV_PCM_STREAM_CAPTURE */ struct snd_pcm_substream *substream; unsigned long pos; dma_addr_t dma_addr; unsigned long buffer_bytes; unsigned long period_bytes; unsigned long frag_bytes; int frags; int frag_count; int dmacount; }; struct txx9aclc_plat_drvdata { void __iomem *base; u64 physbase; }; static inline struct txx9aclc_plat_drvdata *txx9aclc_get_plat_drvdata( struct snd_soc_dai *dai) { return dev_get_drvdata(dai->dev); } #endif /* __TXX9ACLC_H */ 66c'/>
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-24 16:54:39 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-24 16:54:39 -0800
commit883af14e67e8b8702b5560aa64c888c0cd0bd66c (patch)
tree74e3a6b53f5fad9f7848ab1b9f6921b7012940a4 /include/xen/tmem.h
parent0263d4ebd94b36280608e296cba39b924b6e832b (diff)
parentaab45453ff5c77200c6da4ac909f7a4392aed17e (diff)
Merge branch 'akpm' (patches from Andrew)
Merge fixes from Andrew Morton: "26 fixes" * emailed patches from Andrew Morton <akpm@linux-foundation.org>: (26 commits) MAINTAINERS: add Dan Streetman to zbud maintainers MAINTAINERS: add Dan Streetman to zswap maintainers mm: do not export ioremap_page_range symbol for external module mn10300: fix build error of missing fpu_save() romfs: use different way to generate fsid for BLOCK or MTD frv: add missing atomic64 operations mm, page_alloc: fix premature OOM when racing with cpuset mems update mm, page_alloc: move cpuset seqcount checking to slowpath mm, page_alloc: fix fast-path race with cpuset update or removal mm, page_alloc: fix check for NULL preferred_zone kernel/panic.c: add missing \n fbdev: color map copying bounds checking frv: add atomic64_add_unless() mm/mempolicy.c: do not put mempolicy before using its nodemask radix-tree: fix private list warnings Documentation/filesystems/proc.txt: add VmPin mm, memcg: do not retry precharge charges proc: add a schedule point in proc_pid_readdir() mm: alloc_contig: re-allow CMA to compact FS pages mm/slub.c: trace free objects at KERN_INFO ...
Diffstat (limited to 'include/xen/tmem.h')