#ifndef __ATMEL_PDMIC_H_ #define __ATMEL_PDMIC_H_ #include #define PDMIC_CR 0x00000000 #define PDMIC_CR_SWRST 0x1 #define PDMIC_CR_SWRST_MASK BIT(0) #define PDMIC_CR_SWRST_SHIFT (0) #define PDMIC_CR_ENPDM_DIS 0x0 #define PDMIC_CR_ENPDM_EN 0x1 #define PDMIC_CR_ENPDM_MASK BIT(4) #define PDMIC_CR_ENPDM_SHIFT (4) #define PDMIC_MR 0x00000004 #define PDMIC_MR_CLKS_PCK 0x0 #define PDMIC_MR_CLKS_GCK 0x1 #define PDMIC_MR_CLKS_MASK BIT(4) #define PDMIC_MR_CLKS_SHIFT (4) #define PDMIC_MR_PRESCAL_MASK GENMASK(14, 8) #define PDMIC_MR_PRESCAL_SHIFT (8) #define PDMIC_CDR 0x00000014 #define PDMIC_IER 0x00000018 #define PDMIC_IER_OVRE BIT(25) #define PDMIC_IDR 0x0000001c #define PDMIC_IDR_OVRE BIT(25) #define PDMIC_IMR 0x00000020 #define PDMIC_ISR 0x00000024 #define PDMIC_ISR_OVRE BIT(25) #define PDMIC_DSPR0 0x00000058 #define PDMIC_DSPR0_HPFBYP_DIS 0x1 #define PDMIC_DSPR0_HPFBYP_EN 0x0 #define PDMIC_DSPR0_HPFBYP_MASK BIT(1) #define PDMIC_DSPR0_HPFBYP_SHIFT (1) #define PDMIC_DSPR0_SINBYP_DIS 0x1 #define PDMIC_DSPR0_SINBYP_EN 0x0 #define PDMIC_DSPR0_SINBYP_MASK BIT(2) #define PDMIC_DSPR0_SINBYP_SHIFT (2) #define PDMIC_DSPR0_SIZE_16_BITS 0x0 #define PDMIC_DSPR0_SIZE_32_BITS 0x1 #define PDMIC_DSPR0_SIZE_MASK BIT(3) #define PDMIC_DSPR0_SIZE_SHIFT (3) #define PDMIC_DSPR0_OSR_128 0x0 #define PDMIC_DSPR0_OSR_64 0x1 #define PDMIC_DSPR0_OSR_MASK GENMASK(6, 4) #define PDMIC_DSPR0_OSR_SHIFT (4) #define PDMIC_DSPR0_SCALE_MASK GENMASK(11, 8) #define PDMIC_DSPR0_SCALE_SHIFT (8) #define PDMIC_DSPR0_SHIFT_MASK GENMASK(15, 12) #define PDMIC_DSPR0_SHIFT_SHIFT (12) #define PDMIC_DSPR1 0x0000005c #define PDMIC_DSPR1_DGAIN_MASK GENMASK(14, 0) #define PDMIC_DSPR1_DGAIN_SHIFT (0) #define PDMIC_DSPR1_OFFSET_MASK GENMASK(31, 16) #define PDMIC_DSPR1_OFFSET_SHIFT (16) #define PDMIC_WPMR 0x000000e4 #define PDMIC_WPSR 0x000000e8 #endif 88487a5c32e86ef471977'>treecommitdiff
path: root/include/net/rtnetlink.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-18 11:13:41 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-18 11:13:41 -0800
commitca92e6c7e6329029d7188487a5c32e86ef471977 (patch)
tree704fb5c2ca533cdb569826522eed0dbbcf31f316 /include/net/rtnetlink.h
parent0b75f821ec8be459dd4dec77be39595d989d77ac (diff)
parent4205e4786d0b9fc3b4fec7b1910cf645a0468307 (diff)
Merge branch 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull SMP hotplug update from Thomas Gleixner: "This contains a trivial typo fix and an extension to the core code for dynamically allocating states in the prepare stage. The extension is necessary right now because we need a proper way to unbreak LTTNG, which iscurrently non functional due to the removal of the notifiers. Surely it's out of tree, but it's widely used by distros. The simple solution would have been to reserve a state for LTTNG, but I'm not fond about unused crap in the kernel and the dynamic range, which we admittedly should have done right away, allows us to remove quite some of the hardcoded states, i.e. those which have no ordering requirements. So doing the right thing now is better than having an smaller intermediate solution which needs to be reworked anyway" * 'smp-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: cpu/hotplug: Provide dynamic range for prepare stage perf/x86/amd/ibs: Fix typo after cleanup state names in cpu/hotplug
Diffstat (limited to 'include/net/rtnetlink.h')