/linux-4.1.27/drivers/clk/ |
H A D | clk-fixed-rate.c | 20 * DOC: basic fixed-rate clock that cannot gate 25 * rate - rate is always a fixed value. No clk_set_rate support 26 * parent - fixed parent. No clk_set_parent support 50 * clk_register_fixed_rate_with_accuracy - register fixed-rate clock with the 63 struct clk_fixed_rate *fixed; clk_register_fixed_rate_with_accuracy() local 67 /* allocate fixed-rate clock */ clk_register_fixed_rate_with_accuracy() 68 fixed = kzalloc(sizeof(struct clk_fixed_rate), GFP_KERNEL); clk_register_fixed_rate_with_accuracy() 69 if (!fixed) { clk_register_fixed_rate_with_accuracy() 70 pr_err("%s: could not allocate fixed clk\n", __func__); clk_register_fixed_rate_with_accuracy() 81 fixed->fixed_rate = fixed_rate; clk_register_fixed_rate_with_accuracy() 82 fixed->fixed_accuracy = fixed_accuracy; clk_register_fixed_rate_with_accuracy() 83 fixed->hw.init = &init; clk_register_fixed_rate_with_accuracy() 86 clk = clk_register(dev, &fixed->hw); clk_register_fixed_rate_with_accuracy() 88 kfree(fixed); clk_register_fixed_rate_with_accuracy() 95 * clk_register_fixed_rate - register fixed-rate clock with the clock framework 113 * of_fixed_clk_setup() - Setup function for simple fixed rate clock 136 CLK_OF_DECLARE(fixed_clk, "fixed-clock", of_fixed_clk_setup);
|
H A D | clk-fixed-factor.c | 17 * DOC: basic fixed multiplier and divider clock that cannot gate 22 * rate - rate is fixed. clk->rate = parent->rate / div * mult 23 * parent - fixed parent. No clk_set_parent support 78 pr_err("%s: could not allocate fixed factor clk\n", __func__); clk_register_fixed_factor() 104 * of_fixed_factor_clk_setup() - Setup function for simple fixed factor clock 134 CLK_OF_DECLARE(fixed_factor_clk, "fixed-factor-clock",
|
H A D | clk-bcm2835.c | 26 * These are fixed clocks. They're probably not all root clocks and it may
|
/linux-4.1.27/arch/mn10300/include/uapi/asm/ |
H A D | mman.h | 3 #define MIN_MAP_ADDR PAGE_SIZE /* minimum fixed mmap address */
|
/linux-4.1.27/drivers/clk/sunxi/ |
H A D | clk-a10-hosc.c | 29 struct clk_fixed_rate *fixed; sun4i_osc_clk_setup() local 37 /* allocate fixed-rate and gate clock structs */ sun4i_osc_clk_setup() 38 fixed = kzalloc(sizeof(struct clk_fixed_rate), GFP_KERNEL); sun4i_osc_clk_setup() 39 if (!fixed) sun4i_osc_clk_setup() 47 /* set up gate and fixed rate properties */ sun4i_osc_clk_setup() 51 fixed->fixed_rate = rate; sun4i_osc_clk_setup() 56 &fixed->hw, &clk_fixed_rate_ops, sun4i_osc_clk_setup() 71 kfree(fixed); sun4i_osc_clk_setup()
|
/linux-4.1.27/arch/mips/include/asm/ |
H A D | tlbmisc.h | 5 * - add_wired_entry() add a fixed TLB entry, and move wired register
|
H A D | seccomp.h | 9 * this is fixed we priorize O32 as the compat ABI over N32.
|
H A D | irq.h | 41 * Before R2 the timer and performance counter interrupts were both fixed to
|
H A D | fixmap.h | 34 * fixed-size 4k pages. (or larger if used with an increment
|
/linux-4.1.27/arch/cris/kernel/ |
H A D | time.c | 8 * fixed set_rtc_mmss, fixed time.year for >= 2000, new mktime 10 * fixed 500 ms bug at call to set_rtc_mmss, fixed DS12887 13 * fixed time warps in do_[slow|fast]_gettimeoffset()
|
/linux-4.1.27/arch/x86/include/asm/ |
H A D | highmem.h | 43 * fixed addresses fixed addresses 45 * temp fixed addresses/persistent kmap area VMALLOC_END 46 * PKMAP_BASE temp fixed addresses/vmalloc area 52 * The temp fixed area is only used during boot for early_ioremap(), and 54 * available after early boot so the temp fixed area is available for re-use.
|
H A D | perf_event.h | 132 * All 3 fixed-mode PMCs are configured via this single MSR: 154 * We model BTS tracing as another fixed-mode PMC. 156 * We choose a value in the middle of the fixed event range, since lower 157 * values are used by actual fixed events and higher values are used
|
/linux-4.1.27/drivers/net/wireless/ti/wlcore/ |
H A D | io.h | 59 bool fixed) wlcore_raw_write() 68 ret = wl->if_ops->write(wl->dev, addr, buf, len, fixed); wlcore_raw_write() 77 bool fixed) wlcore_raw_read() 86 ret = wl->if_ops->read(wl->dev, addr, buf, len, fixed); wlcore_raw_read() 95 bool fixed) wlcore_raw_read_data() 97 return wlcore_raw_read(wl, wl->rtable[reg], buf, len, fixed); wlcore_raw_read_data() 102 bool fixed) wlcore_raw_write_data() 104 return wlcore_raw_write(wl, wl->rtable[reg], buf, len, fixed); wlcore_raw_write_data() 132 void *buf, size_t len, bool fixed) wlcore_read() 138 return wlcore_raw_read(wl, physical, buf, len, fixed); wlcore_read() 142 void *buf, size_t len, bool fixed) wlcore_write() 148 return wlcore_raw_write(wl, physical, buf, len, fixed); wlcore_write() 153 bool fixed) wlcore_write_data() 155 return wlcore_write(wl, wl->rtable[reg], buf, len, fixed); wlcore_write_data() 160 bool fixed) wlcore_read_data() 162 return wlcore_read(wl, wl->rtable[reg], buf, len, fixed); wlcore_read_data() 167 bool fixed) wlcore_read_hwaddr() 177 return wlcore_raw_read(wl, physical, buf, len, fixed); wlcore_read_hwaddr() 57 wlcore_raw_write(struct wl1271 *wl, int addr, void *buf, size_t len, bool fixed) wlcore_raw_write() argument 75 wlcore_raw_read(struct wl1271 *wl, int addr, void *buf, size_t len, bool fixed) wlcore_raw_read() argument 93 wlcore_raw_read_data(struct wl1271 *wl, int reg, void *buf, size_t len, bool fixed) wlcore_raw_read_data() argument 100 wlcore_raw_write_data(struct wl1271 *wl, int reg, void *buf, size_t len, bool fixed) wlcore_raw_write_data() argument 131 wlcore_read(struct wl1271 *wl, int addr, void *buf, size_t len, bool fixed) wlcore_read() argument 141 wlcore_write(struct wl1271 *wl, int addr, void *buf, size_t len, bool fixed) wlcore_write() argument 151 wlcore_write_data(struct wl1271 *wl, int reg, void *buf, size_t len, bool fixed) wlcore_write_data() argument 158 wlcore_read_data(struct wl1271 *wl, int reg, void *buf, size_t len, bool fixed) wlcore_read_data() argument 165 wlcore_read_hwaddr(struct wl1271 *wl, int hwaddr, void *buf, size_t len, bool fixed) wlcore_read_hwaddr() argument
|
H A D | spi.c | 204 void *buf, size_t len, bool fixed) wl12xx_spi_raw_read() 226 if (fixed) wl12xx_spi_raw_read() 261 if (!fixed) wl12xx_spi_raw_read() 271 void *buf, size_t len, bool fixed) wl12xx_spi_raw_write() 298 if (fixed) wl12xx_spi_raw_write() 309 if (!fixed) wl12xx_spi_raw_write() 203 wl12xx_spi_raw_read(struct device *child, int addr, void *buf, size_t len, bool fixed) wl12xx_spi_raw_read() argument 270 wl12xx_spi_raw_write(struct device *child, int addr, void *buf, size_t len, bool fixed) wl12xx_spi_raw_write() argument
|
H A D | event.h | 32 * B) at fixed locations in the target's memory. The host processes one
|
H A D | sdio.c | 76 void *buf, size_t len, bool fixed) wl12xx_sdio_raw_read() 96 if (fixed) wl12xx_sdio_raw_read() 114 void *buf, size_t len, bool fixed) wl12xx_sdio_raw_write() 137 if (fixed) wl12xx_sdio_raw_write() 75 wl12xx_sdio_raw_read(struct device *child, int addr, void *buf, size_t len, bool fixed) wl12xx_sdio_raw_read() argument 113 wl12xx_sdio_raw_write(struct device *child, int addr, void *buf, size_t len, bool fixed) wl12xx_sdio_raw_write() argument
|
/linux-4.1.27/lib/zlib_inflate/ |
H A D | inffixed.h | 1 /* inffixed.h -- table for decoding fixed codes
|
/linux-4.1.27/arch/mips/boot/dts/include/dt-bindings/clock/ |
H A D | hip04-clock.h | 28 /* fixed rate & fixed factor clocks */
|
H A D | marvell,pxa168.h | 4 /* fixed clocks and plls */
|
H A D | marvell,pxa910.h | 4 /* fixed clocks and plls */
|
H A D | marvell,mmp2.h | 4 /* fixed clocks and plls */
|
H A D | hi3620-clock.h | 29 /* fixed rate & fixed factor clocks */
|
H A D | hix5hd2-clock.h | 13 /* fixed rate */
|
/linux-4.1.27/include/uapi/linux/ |
H A D | signalfd.h | 40 * pad size when you add new members. We use a fixed 43 * members. We use fixed size members because this strcture
|
H A D | fib_rules.h | 59 FR_ACT_TO_TBL, /* Pass to fixed table */
|
H A D | n_r3964.h | 35 * fixed some memory leaks
|
H A D | ipv6.h | 108 * IPv6 fixed header
|
/linux-4.1.27/arch/powerpc/boot/dts/include/dt-bindings/clock/ |
H A D | hip04-clock.h | 28 /* fixed rate & fixed factor clocks */
|
H A D | marvell,pxa168.h | 4 /* fixed clocks and plls */
|
H A D | marvell,pxa910.h | 4 /* fixed clocks and plls */
|
H A D | marvell,mmp2.h | 4 /* fixed clocks and plls */
|
H A D | hi3620-clock.h | 29 /* fixed rate & fixed factor clocks */
|
H A D | hix5hd2-clock.h | 13 /* fixed rate */
|
/linux-4.1.27/arch/arm64/boot/dts/include/dt-bindings/clock/ |
H A D | hip04-clock.h | 28 /* fixed rate & fixed factor clocks */
|
H A D | marvell,pxa168.h | 4 /* fixed clocks and plls */
|
H A D | marvell,pxa910.h | 4 /* fixed clocks and plls */
|
H A D | marvell,mmp2.h | 4 /* fixed clocks and plls */
|
H A D | hi3620-clock.h | 29 /* fixed rate & fixed factor clocks */
|
H A D | hix5hd2-clock.h | 13 /* fixed rate */
|
/linux-4.1.27/arch/metag/boot/dts/include/dt-bindings/clock/ |
H A D | hip04-clock.h | 28 /* fixed rate & fixed factor clocks */
|
H A D | marvell,pxa168.h | 4 /* fixed clocks and plls */
|
H A D | marvell,pxa910.h | 4 /* fixed clocks and plls */
|
H A D | marvell,mmp2.h | 4 /* fixed clocks and plls */
|
H A D | hi3620-clock.h | 29 /* fixed rate & fixed factor clocks */
|
H A D | hix5hd2-clock.h | 13 /* fixed rate */
|
/linux-4.1.27/arch/arm/include/debug/ |
H A D | imx.S | 18 * stay sync with that. It's hard to maintain, and should be fixed 19 * globally for multi-platform build to use a fixed virtual address
|
/linux-4.1.27/arch/arm/boot/dts/include/dt-bindings/clock/ |
H A D | hip04-clock.h | 28 /* fixed rate & fixed factor clocks */
|
H A D | marvell,pxa168.h | 4 /* fixed clocks and plls */
|
H A D | marvell,pxa910.h | 4 /* fixed clocks and plls */
|
H A D | marvell,mmp2.h | 4 /* fixed clocks and plls */
|
H A D | hi3620-clock.h | 29 /* fixed rate & fixed factor clocks */
|
H A D | hix5hd2-clock.h | 13 /* fixed rate */
|
/linux-4.1.27/include/dt-bindings/clock/ |
H A D | hip04-clock.h | 28 /* fixed rate & fixed factor clocks */
|
H A D | marvell,pxa168.h | 4 /* fixed clocks and plls */
|
H A D | marvell,pxa910.h | 4 /* fixed clocks and plls */
|
H A D | marvell,mmp2.h | 4 /* fixed clocks and plls */
|
H A D | hi3620-clock.h | 29 /* fixed rate & fixed factor clocks */
|
H A D | hix5hd2-clock.h | 13 /* fixed rate */
|
/linux-4.1.27/drivers/clk/ti/ |
H A D | Makefile | 3 fixed-factor.o mux.o apll.o
|
H A D | fixed-factor.c | 29 * of_ti_fixed_factor_clk_setup - Setup function for TI fixed factor clock 32 * Sets up a simple fixed factor clock based on device tree info. 65 CLK_OF_DECLARE(ti_fixed_factor_clk, "ti,fixed-factor-clock",
|
/linux-4.1.27/include/linux/regulator/ |
H A D | fixed.h | 2 * fixed.h 44 * This structure contains fixed voltage regulator configuration 45 * information that must be passed by platform code to the fixed 74 "fixed-dummy", s, ns, 0)
|
H A D | tps62360.h | 37 * fixed logic. 39 * fixed logic.
|
H A D | gpio-regulator.h | 6 * based on fixed.h
|
H A D | max8973-regulator.h | 61 * @dvs_gpio: GPIO for dvs. It should be -1 if this is tied with fixed logic.
|
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/ |
H A D | l3_bank_test.c | 15 * Tests that the L3 bank handling is correct. We fixed it in commit e9aaac1.
|
/linux-4.1.27/drivers/regulator/ |
H A D | fixed-helper.c | 5 #include <linux/regulator/fixed.h> 22 * regulator_register_fixed_name - register a no-op fixed regulator 53 data->pdev.name = "reg-fixed-voltage"; regulator_register_always_on()
|
H A D | fixed.c | 2 * fixed.c 26 #include <linux/regulator/fixed.h> 85 * for now; the ENODEV check can be removed once the API is fixed. of_get_fixed_voltage_config() 206 { .compatible = "regulator-fixed", }, 215 .name = "reg-fixed-voltage", 235 MODULE_ALIAS("platform:reg-fixed-voltage");
|
/linux-4.1.27/include/linux/crush/ |
H A D | crush.h | 116 __u32 weight; /* 16-bit fixed point */ 131 __u32 item_weight; /* 16-bit fixed point; all items equally weighted */ 136 __u32 *item_weights; /* 16-bit fixed point */ 137 __u32 *sum_weights; /* 16-bit fixed point. element i is sum 150 __u32 *item_weights; /* 16-bit fixed point */ 151 __u32 *straws; /* 16-bit fixed point */ 156 __u32 *item_weights; /* 16-bit fixed point */
|
/linux-4.1.27/drivers/acpi/acpica/ |
H A D | evevent.c | 74 /* If Hardware Reduced flag is set, there are no fixed events */ acpi_ev_initialize_events() 88 "Unable to initialize fixed events")); acpi_ev_initialize_events() 156 * DESCRIPTION: Install the fixed event handlers and disable all fixed events. 166 * Initialize the structure that keeps track of fixed event handlers and acpi_ev_fixed_event_initialize() 167 * enable the fixed events. acpi_ev_fixed_event_initialize() 173 /* Disable the fixed event */ acpi_ev_fixed_event_initialize() 197 * DESCRIPTION: Checks the PM status register for active fixed events 211 * Read the fixed feature status and enable registers, as all the cases acpi_ev_fixed_event_detect() 285 "No installed handler for fixed event - %s (%u), disabling", acpi_ev_fixed_event_dispatch()
|
H A D | evxfevnt.c | 168 * PARAMETERS: event - The fixed eventto be enabled ACPI_EXPORT_SYMBOL() 173 * DESCRIPTION: Enable an ACPI event (fixed) ACPI_EXPORT_SYMBOL() 190 * Enable the requested fixed event (by writing a one to the enable ACPI_EXPORT_SYMBOL() 225 * PARAMETERS: event - The fixed event to be disabled ACPI_EXPORT_SYMBOL() 230 * DESCRIPTION: Disable an ACPI event (fixed) ACPI_EXPORT_SYMBOL() 247 * Disable the requested fixed event (by writing a zero to the enable ACPI_EXPORT_SYMBOL() 280 * PARAMETERS: event - The fixed event to be cleared ACPI_EXPORT_SYMBOL() 284 * DESCRIPTION: Clear an ACPI event (fixed) ACPI_EXPORT_SYMBOL() 300 * Clear the requested fixed event (By writing a one to the status ACPI_EXPORT_SYMBOL() 316 * PARAMETERS: event - The fixed event ACPI_EXPORT_SYMBOL()
|
H A D | hwacpi.c | 102 /* BIOS should have disabled ALL fixed and GP events */ acpi_hw_set_mode() 112 * BIOS should clear all fixed status bits and restore fixed event acpi_hw_set_mode()
|
/linux-4.1.27/arch/arm/mach-imx/ |
H A D | mm-imx21.c | 35 * this fixed mapping covers: 44 * this fixed mapping covers: 50 * this fixed mapping covers:
|
H A D | mm-imx27.c | 35 * this fixed mapping covers: 44 * this fixed mapping covers: 50 * this fixed mapping covers:
|
H A D | mx21.h | 101 /* fixed interrupt numbers */ 157 /* fixed DMA request numbers */
|
H A D | mx2x.h | 70 /* fixed interrupt numbers */ 116 /* fixed DMA request numbers */
|
/linux-4.1.27/sound/ppc/ |
H A D | snd_ps3.h | 49 uint32_t avs_audio_ch; /* fixed */ 52 uint32_t avs_audio_format; /* fixed */ 53 uint32_t avs_audio_source; /* fixed */
|
/linux-4.1.27/drivers/staging/wlan-ng/ |
H A D | p80211mgmt.h | 88 * 5) all of the fixed field pointers and fixed length information element 92 * 5a) The length field is set to include the last of the fixed and fixed 304 /*-- fixed fields -----------*/ 316 /*-- fixed fields -----------*/ 340 /*-- fixed fields -----------*/ 355 /*-- fixed fields -----------*/ 370 /*-- fixed fields -----------*/ 387 /*-- fixed fields -----------*/ 404 /*-- fixed fields -----------*/ 422 /*-- fixed fields -----------*/ 439 /*-- fixed fields -----------*/ 454 /*-- fixed fields -----------*/ 475 /*-- fixed fields -----------*/ 492 /*-- fixed fields -----------*/
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
H A D | bugs_64.c | 25 * There are typically fixed size MTRRs in there and overlapping check_bugs()
|
/linux-4.1.27/arch/mips/include/asm/mach-generic/ |
H A D | ioremap.h | 15 * Allow physical addresses to be fixed up to help peripherals located
|
/linux-4.1.27/fs/qnx4/ |
H A D | bitmap.c | 13 * 28-06-1998 by Frank Denis : qnx4_free_inode (to be fixed) .
|
/linux-4.1.27/arch/blackfin/include/asm/ |
H A D | fixed_code.h | 2 * This file defines the fixed addresses where userspace programs
|
H A D | l1layout.h | 18 memory, so that each process can access it at a fixed address. Used for
|
/linux-4.1.27/arch/blackfin/include/uapi/asm/ |
H A D | fixed_code.h | 2 * This file defines the fixed addresses where userspace programs
|
/linux-4.1.27/arch/arc/include/asm/ |
H A D | unaligned.h | 25 /* Not fixed */ misaligned_fixup()
|
/linux-4.1.27/include/linux/ |
H A D | cma.h | 25 bool fixed, struct cma **res_cma);
|
H A D | threads.h | 15 /* FIXME: This should be fixed in the arch's Kconfig */
|
H A D | sh_dma.h | 105 #define DM_FIX 0x0000c000 /* Destination address is fixed */ 108 #define SM_FIX 0x00003000 /* Source address is fixed */
|
H A D | scx200.h | 22 #define SCx200_CB_BASE_FIXED 0x9000 /* Base fixed at 0x9000 according to errata? */
|
H A D | miscdevice.h | 10 * reassigned, or set dynamic if a fixed value is not justified.
|
H A D | dma-contiguous.h | 87 bool fixed); 134 bool fixed) dma_contiguous_reserve_area() 132 dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base, phys_addr_t limit, struct cma **res_cma, bool fixed) dma_contiguous_reserve_area() argument
|
/linux-4.1.27/drivers/clk/shmobile/ |
H A D | clk-rcar-gen2.c | 46 * parent - fixed parent. No clk_set_parent support 170 struct clk_fixed_factor *fixed; cpg_rcan_clk_register() local 174 fixed = kzalloc(sizeof(*fixed), GFP_KERNEL); cpg_rcan_clk_register() 175 if (!fixed) cpg_rcan_clk_register() 178 fixed->mult = 1; cpg_rcan_clk_register() 179 fixed->div = 6; cpg_rcan_clk_register() 183 kfree(fixed); cpg_rcan_clk_register() 193 &fixed->hw, &clk_fixed_factor_ops, cpg_rcan_clk_register() 197 kfree(fixed); cpg_rcan_clk_register() 316 * fixed factor clock for now as there's no generic multiplier rcar_gen2_cpg_register_clock()
|
H A D | clk-rz.c | 54 * let them run at fixed current speed and implement the details later. rz_cpg_register_clock()
|
/linux-4.1.27/arch/sh/include/asm/ |
H A D | addrspace.h | 22 [ P1 (fixed) cached ] 0x80000000 <------ Kernel space 23 [ P2 (fixed) non-cachable] 0xA0000000 <------ Physical access
|
H A D | dma-register.h | 39 #define DM_FIX 0x0000c000 /* Destination address is fixed */ 42 #define SM_FIX 0x00003000 /* Source address is fixed */
|
H A D | tlb_64.h | 14 #define ITLB_FIXED 0x00000000 /* First fixed ITLB, see head.S */ 18 #define DTLB_FIXED 0x00800000 /* First fixed DTLB, see head.S */
|
/linux-4.1.27/arch/m68k/include/asm/ |
H A D | coldfire.h | 34 * parts have fixed addresses and the internal peripherals cannot 39 * this part has a fixed peripheral address map.
|
/linux-4.1.27/drivers/input/touchscreen/ |
H A D | mk712.c | 25 * 1999-12-19: added anti-jitter code, report pen-up events, fixed mk712_poll 28 * 2000-01-05: checked in new anti-jitter code, changed mouse protocol, fixed 31 * Fixed multi open race, fixed memory checks, fixed resource 32 * allocation, fixed close/powerdown bug, switched to new init
|
/linux-4.1.27/drivers/of/ |
H A D | of_mdio.c | 258 * - the old DT binding, where 'fixed-link' was a property with 5 259 * cells encoding various informations about the fixed PHY 260 * - the new DT binding, where 'fixed-link' is a sub-node of the 270 dn = of_get_child_by_name(np, "fixed-link"); of_phy_is_fixed_link() 281 if (of_get_property(np, "fixed-link", &len) && of_phy_is_fixed_link() 308 fixed_link_node = of_get_child_by_name(np, "fixed-link"); of_phy_register_fixed_link() 324 fixed_link_prop = of_get_property(np, "fixed-link", &len); of_phy_register_fixed_link()
|
/linux-4.1.27/drivers/base/ |
H A D | dma-contiguous.c | 112 bool fixed = false; dma_contiguous_reserve() local 121 fixed = true; dma_contiguous_reserve() 141 fixed); dma_contiguous_reserve() 151 * @fixed: hint about where to place the reserved area 159 * If @fixed is true, reserve contiguous area at exactly @base. If false, 164 bool fixed) dma_contiguous_reserve_area() 168 ret = cma_declare_contiguous(base, size, limit, 0, 0, fixed, res_cma); dma_contiguous_reserve_area() 162 dma_contiguous_reserve_area(phys_addr_t size, phys_addr_t base, phys_addr_t limit, struct cma **res_cma, bool fixed) dma_contiguous_reserve_area() argument
|
/linux-4.1.27/arch/x86/pci/ |
H A D | intel_mid_pci.c | 11 * - some devices have the "fixed BAR" capability, which means 50 * fixed_bar_cap - return the offset of the fixed BAR cap if found 54 * Look for the fixed BAR cap on @bus and @devfn, returning its offset 123 * Note: this assumes the fixed size we got is a power of two. pci_device_update_fixed() 185 * Devices with fixed BARs need special handling: pci_write() 187 * - so writes to fixed BARs need special handling pci_write() 188 * - other writes to fixed BAR devices should go through mmconfig pci_write() 299 * Langwell devices reside at fixed offsets, don't try to move them. 314 /* Fixup the BAR sizes for fixed BAR devices and make them unmoveable */ pci_fixed_bar_fixup()
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
H A D | wlan_bssdef.h | 31 * Except the IELength, all other fields are fixed length. Therefore, 99 /* set to fixed when not to be removed as site-surveying */ 100 int fixed; member in struct:wlan_network
|
/linux-4.1.27/drivers/clk/samsung/ |
H A D | clk.h | 54 * struct samsung_fixed_rate_clock: information about fixed-rate clock 56 * @name: name of this fixed-rate clock. 58 * @flags: optional fixed-rate clock flags. 59 * @fixed-rate: fixed clock rate of this clock. 79 * struct samsung_fixed_factor_clock: information about fixed-factor clock 81 * @name: name of this fixed-factor clock. 83 * @mult: fixed multiplication factor. 84 * @div: fixed division factor. 85 * @flags: optional fixed-factor clock flags. 343 /* list of fixed clocks and respective count */ 346 /* list of fixed factor clocks and respective count */
|
H A D | clk-exynos5440.c | 34 /* fixed rate clocks generated outside the soc */ 39 /* fixed rate clocks */ 48 /* fixed factor clocks */
|
H A D | clk.c | 133 /* register a list of fixed clocks */ samsung_clk_register_fixed_rate() 152 * Unconditionally add a clock lookup for the fixed rate clocks. samsung_clk_register_fixed_rate() 162 /* register a list of fixed factor clocks */ samsung_clk_register_fixed_factor() 285 * obtain the clock speed of all external fixed clock sources from device
|
/linux-4.1.27/drivers/clk/versatile/ |
H A D | clk-impd1.c | 100 /* Register the fixed rate PCLK */ integrator_impd1_clk_init() 123 /* UART reference clock divides CLK2 by a fixed factor 4 */ integrator_impd1_clk_init() 133 /* SPI PL022 clock divides CLK2 by a fixed factor 64 */ integrator_impd1_clk_init() 145 /* Smart Card clock divides CLK2 by a fixed factor 4 */ integrator_impd1_clk_init()
|
/linux-4.1.27/arch/sparc/include/asm/ |
H A D | unistd.h | 5 * think of right now to force the arguments into fixed registers
|
H A D | switch_to_64.h | 13 * We tell gcc we clobber all non-fixed-usage registers except
|
H A D | io-unit.h | 22 fixed DMA range 64M */
|
/linux-4.1.27/arch/mips/include/asm/mach-au1x00/ |
H A D | ioremap.h | 24 * Allow physical addresses to be fixed up to help 36-bit peripherals.
|
/linux-4.1.27/arch/mips/include/asm/mach-tx39xx/ |
H A D | ioremap.h | 15 * Allow physical addresses to be fixed up to help peripherals located
|
/linux-4.1.27/arch/mips/include/asm/mach-tx49xx/ |
H A D | ioremap.h | 15 * Allow physical addresses to be fixed up to help peripherals located
|
/linux-4.1.27/arch/s390/include/uapi/asm/ |
H A D | ucontext.h | 15 * on a rt signal frame. Please note that the structure is not fixed,
|
/linux-4.1.27/arch/parisc/include/asm/ |
H A D | fixmap.h | 5 * This file defines the locations of the fixed mappings on parisc.
|
H A D | page.h | 117 * If you alter it, make sure to take care of our various fixed mapping 148 #define HPAGE_SHIFT 22 /* 4MB (is this fixed?) */
|
/linux-4.1.27/arch/arm64/include/asm/ |
H A D | kvm_mmio.h | 27 * need any decoding. To be fixed.
|
/linux-4.1.27/arch/hexagon/include/asm/ |
H A D | timer-regs.h | 30 * 8x50 HDD Specs 5-8. Simulator co-sim not fixed until
|
/linux-4.1.27/arch/arm/include/asm/ |
H A D | v7m.h | 45 * (0 -> msp; 1 -> psp). Bits [1:0] are fixed to 0b01.
|
/linux-4.1.27/lib/ |
H A D | rational.c | 23 * you may look at given_numerator as a fixed point number,
|
/linux-4.1.27/include/scsi/ |
H A D | scsi_eh.h | 13 * is to place the salient data from either "fixed" or "descriptor" sense 27 u8 additional_length; /* always 0 for fixed sense format */
|
/linux-4.1.27/tools/testing/selftests/vm/ |
H A D | hugepage-mmap.c | 12 * huge pages. That means that if one requires a fixed address, a huge page 13 * aligned address starting with 0x800000... will be required. If a fixed
|
H A D | hugepage-shm.c | 11 * huge pages. That means that if one requires a fixed address, a huge page 12 * aligned address starting with 0x800000... will be required. If a fixed
|
H A D | map_hugetlb.c | 9 * specified. Specifying a fixed address is not required on ppc64, i386
|
/linux-4.1.27/drivers/gpu/drm/i2c/ |
H A D | ch7006_priv.h | 35 typedef int64_t fixed; typedef 50 fixed vrefresh; 55 fixed subc_freq; 56 fixed black_level; 68 fixed subc_coeff; 163 static inline int32_t round_fixed(fixed x) round_fixed()
|
/linux-4.1.27/arch/powerpc/platforms/cell/ |
H A D | iommu.c | 54 * once spider-net has been fixed to pass the correct direction 872 * This code adds support for setting up a fixed IOMMU mapping on certain 875 * the fixed mapping. 877 * The fixed mapping is established at boot, and maps all of physical memory 879 * we setup the fixed mapping immediately above the normal IOMMU window. 882 * IOMMU window from 0-2GB and the fixed mapping window from 2GB to 6GB. In 887 * On machines with 30GB or more of memory, we are unable to place the fixed 890 * table, this region does not need to be part of the fixed mapping as no 891 * device should ever be DMA'ing to it. We then setup the fixed mapping 961 dev_dbg(dev, "iommu: 64-bit OK, using fixed ops\n"); dma_set_mask_and_switch() 982 dev_dbg(dev, "iommu: fixed addr = %llx\n", addr); cell_dma_dev_setup_fixed() 1016 pr_info("IOMMU: Using weak ordering for fixed mapping\n"); cell_iommu_setup_fixed_ptab() 1018 pr_info("IOMMU: Using strong ordering for fixed mapping\n"); cell_iommu_setup_fixed_ptab() 1026 pr_debug("iommu: fixed/dynamic overlap, skipping\n"); cell_iommu_setup_fixed_ptab() 1042 /* The fixed mapping is only supported on axon machines */ cell_iommu_fixed_mapping_init() 1047 pr_debug("iommu: fixed mapping disabled, no axons found\n"); cell_iommu_fixed_mapping_init() 1051 /* We must have dma-ranges properties for fixed mapping to work */ cell_iommu_fixed_mapping_init() 1056 pr_debug("iommu: no dma-ranges found, no fixed mapping\n"); cell_iommu_fixed_mapping_init() 1060 /* The default setup is to have the fixed mapping sit after the cell_iommu_fixed_mapping_init() 1078 * RAM with the fixed mapping, and also fit the dynamic cell_iommu_fixed_mapping_init() 1081 * need a fixed mapping for that area. cell_iommu_fixed_mapping_init() 1124 "fixed window 0x%lx-0x%lx\n", iommu->nid, dbase, cell_iommu_fixed_mapping_init() 1152 * we're on a triblade or a CAB so by default the fixed mapping setup_iommu_fixed()
|
H A D | cpufreq_spudemand.c | 33 #define EXP 753 /* exp(-1) in fixed-point */ 36 unsigned long busy_spus; /* fixed-point */
|
/linux-4.1.27/drivers/net/phy/ |
H A D | fixed_phy.c | 2 * Fixed MDIO bus (MDIO bus emulation with fixed PHYs) 78 pr_warn("fixed phy: unknown speed\n"); fixed_phy_update_regs() 98 pr_warn("fixed phy: unknown speed\n"); fixed_phy_update_regs() 327 snprintf(fmb->mii_bus->id, MII_BUS_ID_SIZE, "fixed-0"); fixed_mdio_bus_init() 366 MODULE_DESCRIPTION("Fixed MDIO bus (MDIO bus emulation with fixed PHYs)");
|
/linux-4.1.27/drivers/clocksource/ |
H A D | time-armada-370-xp.c | 22 * * Armada 370 has no 25 MHz fixed timer. 24 * * Armada XP cannot work properly without such 25 MHz fixed timer as 317 struct clk *clk = of_clk_get_by_name(np, "fixed"); armada_xp_timer_init() 319 /* The 25Mhz fixed clock is mandatory, and must always be available */ armada_xp_timer_init() 333 clk = of_clk_get_by_name(np, "fixed"); armada_375_timer_init()
|
/linux-4.1.27/drivers/scsi/ |
H A D | osst_options.h | 34 asynchronous write in fixed block mode. See also OSST_ASYNC_WRITES 71 /* If OSST_BUFFER_WRITES is non-zero, writes in fixed block mode are 81 /* If OSST_READ_AHEAD is non-zero, blocks are read ahead in fixed block
|
H A D | st_options.h | 38 /* The minimum tape driver buffer size in kilobytes in fixed block mode. 63 /* If ST_BUFFER_WRITES is non-zero, writes in fixed block mode are 73 /* If ST_READ_AHEAD is non-zero, blocks are read ahead in fixed block
|
/linux-4.1.27/arch/m68k/coldfire/ |
H A D | intc-2.c | 6 * programmable + 7 fixed-level interrupt sources. This includes the 523x 10 * The external 7 fixed interrupts are part the the Edge Port unit of these 37 * The EDGE Port interrupts are the fixed 7 external interrupts.
|
/linux-4.1.27/drivers/infiniband/hw/ipath/ |
H A D | ipath_stats.c | 205 static u32 fixed; ipath_chk_errormask() local 217 fixed++; ipath_chk_errormask() 232 "errormask fixed(%u) %lx -> %lx, ctrl %x hwerr %lx\n", ipath_chk_errormask() 233 fixed, errormask, (unsigned long)dd->ipath_errormask, ipath_chk_errormask() 236 ipath_dbg("errormask fixed(%u) %lx -> %lx, no freeze\n", ipath_chk_errormask() 237 fixed, errormask, ipath_chk_errormask()
|
/linux-4.1.27/arch/powerpc/boot/ |
H A D | wrapper | 239 platformo="$object/fixed-head.o $object/$platform.o" 243 platformo="$object/fixed-head.o $object/redboot-8xx.o" 251 platformo="$object/fixed-head.o $object/simpleboot.o $object/virtex.o" 255 platformo="$object/fixed-head.o $object/simpleboot.o" 259 platformo="$object/fixed-head.o $object/redboot-83xx.o" 285 platformo="$object/fixed-head.o $object/mvme5100.o"
|
H A D | cuboot-52xx.c | 36 * soc node name in existing dts files -- once that is fixed, platform_fixups()
|
H A D | cuboot-83xx.c | 32 * soc node name in existing dts files -- once that is fixed, platform_fixups()
|
H A D | cuboot-85xx-cpm2.c | 34 * soc node name in existing dts files -- once that is fixed, platform_fixups()
|
H A D | cuboot-85xx.c | 35 * soc node name in existing dts files -- once that is fixed, platform_fixups()
|
/linux-4.1.27/arch/x86/kvm/ |
H A D | pmu.c | 40 /* mapping between fixed pmc index and arch_events array */ 435 bool fixed = pmc & (1u << 30); kvm_pmu_check_pmc() local 437 return (!fixed && pmc >= pmu->nr_arch_gp_counters) || kvm_pmu_check_pmc() 438 (fixed && pmc >= pmu->nr_arch_fixed_counters); kvm_pmu_check_pmc() 445 bool fixed = pmc & (1u << 30); kvm_pmu_read_pmc() local 450 if (!fixed && pmc >= pmu->nr_arch_gp_counters) kvm_pmu_read_pmc() 452 if (fixed && pmc >= pmu->nr_arch_fixed_counters) kvm_pmu_read_pmc() 454 counters = fixed ? pmu->fixed_counters : pmu->gp_counters; kvm_pmu_read_pmc()
|
/linux-4.1.27/arch/sh/mm/ |
H A D | ioremap.c | 96 * In 29-bit mode this includes the fixed P1/P2 areas, as well as iomapping_nontranslatable() 118 * There's no VMA if it's from an early fixed mapping. __iounmap()
|
/linux-4.1.27/drivers/acpi/ |
H A D | acpi_apd.c | 37 * @fixed_clk_rate: fixed rate input clock source for acpi device; 38 * 0 means no fixed rate input clock source
|
/linux-4.1.27/fs/ocfs2/ |
H A D | blockcheck.h | 29 u64 b_recover_count; /* Number of blocks fixed by ecc */ 95 * offset of the current hunk. If bit to be fixed is not part of the
|
/linux-4.1.27/include/acpi/ |
H A D | acpi_drivers.h | 69 * For fixed hardware buttons, we fabricate acpi_devices with HID 72 * To allow drivers to treat notifications from fixed hardware the
|
/linux-4.1.27/arch/c6x/include/asm/ |
H A D | clock.h | 103 #define FIXED_DIV_PLL BIT(4) /* fixed divisor from PLL */ 104 #define FIXED_RATE_PLL BIT(5) /* fixed ouput rate PLL */
|
/linux-4.1.27/arch/arm/mach-mmp/ |
H A D | brownstone.c | 20 #include <linux/regulator/fixed.h> 158 .name = "reg-fixed-voltage",
|
/linux-4.1.27/scripts/ |
H A D | headers_check.pl | 101 # Warn until headers are all fixed 162 # Warn until headers are all fixed
|
H A D | checkpatch.pl | 713 my @fixed = (); 745 @fixed = (); 1948 push(@fixed, $rawline) if ($fix); 2165 $fixed[$fixlinenr] = 2173 $fixed[$fixlinenr] = 2182 $fixed[$fixlinenr] = 2371 $fixed[$fixlinenr] =~ s/(^|[^A-Za-z@])($typo)($|[^A-Za-z@])/$1$typo_fix$3/; 2385 $fixed[$fixlinenr] =~ s/[\s\015]+$//; 2392 $fixed[$fixlinenr] =~ s/\s+$//; 2557 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e; 2567 while ($fixed[$fixlinenr] =~ 2569 while ($fixed[$fixlinenr] =~ 2603 $fixed[$fixlinenr] =~ 2622 $fixed[$fixlinenr] =~ 2736 $fixed[$fixlinenr] =~ s/^\+([ \t]+)/"\+" . tabify($1)/e; 3115 my $line = $fixed[$fixlinenr]; 3118 $fixed[$fixlinenr] =~ s@\/\/(.*)$@/\* $comment \*/@; 3177 $fixed[$fixlinenr] =~ s/(^.$Type\s*$Ident(?:\s+$Modifier)*)\s*=\s*(0|NULL|false)\s*;/$1;/; 3186 $fixed[$fixlinenr] =~ s/(\bstatic\s.*?)\s*=\s*(0|NULL|false)\s*;/$1;/; 3238 $fixed[$fixlinenr] =~ s/\Q$array_div\E/ARRAY_SIZE($array)/; 3248 $fixed[$fixlinenr] =~ s/(\b($Type)\s+($Ident))\s*\(\s*\)/$2 $3(void)/; 3257 $fixed[$fixlinenr] =~ s/\b(?:static\s+|)DEFINE_PCI_DEVICE_TABLE\s*\(\s*(\w+)\s*\)\s*=\s*/static const struct pci_device_id $1\[\] = /; 3295 $fixed[$fixlinenr] =~ 3323 $fixed[$fixlinenr] =~ 3385 $fixed[$fixlinenr] =~ 3450 $fixed[$fixlinenr] =~ 3520 $fixed[$fixlinenr] =~ 3537 $fixed[$fixlinenr] =~ 3572 $fixed[$fixlinenr] =~ 3882 if ($fix && $line_fixed && $fixed_line ne $fixed[$fixlinenr]) { 3883 $fixed[$fixlinenr] = $fixed_line; 3894 1 while $fixed[$fixlinenr] =~ 3927 $fixed[$fixlinenr] =~ s/^(\+.*(?:do|\))){/$1 {/; 3945 $fixed[$fixlinenr] =~ 3955 $fixed[$fixlinenr] =~ 3963 $fixed[$fixlinenr] =~ 3974 $fixed[$fixlinenr] =~ 3984 $fixed[$fixlinenr] =~ 3997 $fixed[$fixlinenr] =~ s/\(\s*\Q$var\E\s*\)/$var/; 4011 $fixed[$fixlinenr] =~ s/\Q$var\E/$var2/; 4021 $fixed[$fixlinenr] =~ 4083 $fixed[$fixlinenr] =~ 4242 $fixed[$fixlinenr] =~ 4280 $fixed[$fixlinenr] =~ s/\s+$//; 4662 $fixed[$fixlinenr] =~ s/^(\+.*\".*)\s+\\n/$1\\n/; 4737 $fixed[$fixlinenr] =~ s/\s*$level\s*//; 4758 $fixed[$fixlinenr] =~ s/\b\Q$val\E\s*(?:==|\!=)\s*NULL\b/$equal$val/; 4776 $fixed[$fixlinenr] =~ s/(\bstatic\s+(?:const\s+)?)(?:$attr\s+)?($NonptrTypeWithAttr)\s+(?:$attr\s+)?($Ident(?:\[[^]]*\])?)\s*([=;])\s*/"$1" . trim(string_find_replace($2, "\\s*$attr\\s*", " ")) . " " . trim(string_find_replace($3, "\\s*$attr\\s*", "")) . " $attr" . ("$4" eq ";" ? ";" : " = ")/e; 4790 $fixed[$fixlinenr] =~ 4801 my $lead = $fixed[$fixlinenr] =~ 4806 $fixed[$fixlinenr] =~ s/(^\+\s*(?:static\s+))/$lead/; 4816 $fixed[$fixlinenr] =~ s/\s+__read_mostly\b//; 4829 $fixed[$fixlinenr] =~ s/\b$constant_func\b/$func/g; 4879 $fixed[$fixlinenr] =~ 4927 $fixed[$fixlinenr] =~ s/\b(__inline__|__inline)\b/inline/; 4952 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*printf\s*,\s*(.*)\)\s*\)\s*\)/"__printf(" . trim($1) . ")"/ex; 4963 $fixed[$fixlinenr] =~ s/\b__attribute__\s*\(\s*\(\s*format\s*\(\s*scanf\s*,\s*(.*)\)\s*\)\s*\)/"__scanf(" . trim($1) . ")"/ex; 4987 $fixed[$fixlinenr] =~ s/\bsizeof\s+((?:\*\s*|)$Lval|$Type(?:\s+$Lval|))/"sizeof(" . trim($1) . ")"/ex; 5005 $fixed[$fixlinenr] =~ s/\bseq_printf\b/seq_puts/; 5034 $fixed[$fixlinenr] =~ s/\bmemcpy\s*\(\s*$FuncArg\s*,\s*$FuncArg\s*\,\s*ETH_ALEN\s*\)/ether_addr_copy($2, $7)/; 5122 $fixed[$fixlinenr] =~ s/(.*)\bextern\b\s*(.*)/$1$2/; 5199 $fixed[$fixlinenr] =~ s/\b($Lval)\s*\=\s*(?:$balanced_parens)?\s*(k[mz]alloc)\s*\(\s*($FuncArg)\s*\*\s*($FuncArg)/$1 . ' = ' . "$newfunc(" . trim($r1) . ', ' . trim($r2)/e; 5223 $fixed[$fixlinenr] =~ s/(\s*;\s*){2,}$/;/g; 5234 $fixed[$fixlinenr] =~ s/\(?\s*1\s*[ulUL]*\s*<<\s*(\d+|$Ident)\s*\)?/BIT${ull}($1)/; 5282 $fixed[$fixlinenr] =~ s/\b__FUNCTION__\b/__func__/g; 5533 ("@rawlines" ne "@fixed" || 5540 @fixed = fix_inserted_deleted_lines(\@fixed, \@fixed_inserted, \@fixed_deleted); 5544 foreach my $fixed_line (@fixed) {
|
/linux-4.1.27/drivers/iio/dac/ |
H A D | ad5624r.h | 67 * fixed internal reference voltage options.
|
/linux-4.1.27/drivers/media/usb/gspca/ |
H A D | sn9c2028.h | 33 /* Search for the SOF marker (fixed part) in the header */ sn9c2028_find_sof()
|
H A D | pac_common.h | 79 /* Search for the SOF marker (fixed part) in the header */ pac_find_sof()
|
/linux-4.1.27/block/partitions/ |
H A D | cmdline.c | 6 * Typically used for fixed block (eMMC) embedded devices.
|
/linux-4.1.27/arch/tile/include/asm/ |
H A D | highmem.h | 40 * temp fixed addresses
|
H A D | fixmap.h | 39 * fixed-size 4k pages. (or larger if used with an increment
|
H A D | mmzone.h | 29 * fixed-size, power-of-two increments. That would make computing the node
|
/linux-4.1.27/arch/um/drivers/ |
H A D | Makefile | 36 # When the above is fixed, don't forget to add this too!
|
/linux-4.1.27/arch/um/include/asm/ |
H A D | fixmap.h | 21 * fixed-size 4k pages. (or larger if used with an increment
|
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/ |
H A D | pll.h | 56 * however, max_log2p cannot be fixed-up during parsing as the
|
/linux-4.1.27/drivers/clk/hisilicon/ |
H A D | clk-hip04.c | 39 /* fixed rate clocks */
|
/linux-4.1.27/arch/microblaze/include/asm/ |
H A D | fixmap.h | 42 * fixed-size 4k pages. (or larger if used with an increment
|
/linux-4.1.27/drivers/usb/core/ |
H A D | notify.c | 7 * but fixed up to not be so broken.
|
/linux-4.1.27/fs/nfsd/ |
H A D | cache.h | 60 * attrstat replies. Using cache entries with fixed length instead
|
/linux-4.1.27/drivers/media/dvb-core/ |
H A D | dvb_math.h | 2 * dvb-math provides some complex fixed-point math
|
/linux-4.1.27/include/media/ |
H A D | si4713.h | 18 /* The SI4713 I2C sensor chip has a fixed slave address of 0xc6 or 0x22. */
|
/linux-4.1.27/arch/powerpc/sysdev/ |
H A D | rtc_cmos_setup.c | 52 * Use a fixed interrupt value of 8 since on PPC if we are add_rtc()
|
/linux-4.1.27/arch/sh/boards/mach-rsk/ |
H A D | setup.c | 19 #include <linux/regulator/fixed.h>
|
/linux-4.1.27/arch/sh/boards/mach-sdk7786/ |
H A D | fpga.c | 21 * so we attempt to scan for it using the fixed SRSTR read magic.
|
/linux-4.1.27/arch/sh/kernel/cpu/sh2a/ |
H A D | opcode_helper.c | 15 * Instructions on SH are generally fixed at 16-bits, however, SH-2A
|
/linux-4.1.27/arch/mn10300/include/asm/ |
H A D | serial-regs.h | 47 #define SC01CTR_PB_FIXED0 0x0040 /* - fixed at 0 */ 48 #define SC01CTR_PB_FIXED1 0x0050 /* - fixed at 1 */ 132 #define SC2CTR_PB_FIXED0 0x0040 /* - fixed at 0 */ 133 #define SC2CTR_PB_FIXED1 0x0050 /* - fixed at 1 */
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | fixmap.h | 38 * fixed-size 4k pages. (or larger if used with an increment
|
H A D | smu.h | 163 * though, so be careful of calling context for now. This may be "fixed" 583 __u16 volt_scale; /* u4.12 fixed point */ 584 __s16 volt_offset; /* s4.12 fixed point */ 585 __u16 curr_scale; /* u4.12 fixed point */ 586 __s16 curr_offset; /* s4.12 fixed point */ 587 __s32 power_quads[3]; /* s4.28 fixed point */ 595 __u16 m_value; /* u1.15 fixed point */ 596 __s16 b_value; /* s10.6 fixed point */ 605 __u16 pow_scale; /* u4.12 fixed point */ 606 __s16 pow_offset; /* s4.12 fixed point */
|
/linux-4.1.27/arch/c6x/kernel/ |
H A D | vmlinux.lds.S | 42 * cores. It needs to be a fixed offset from PAGE_OFFSET
|
/linux-4.1.27/arch/cris/include/arch-v10/arch/ |
H A D | bug.h | 40 /* This version will have to do for now, until the compiler is fixed.
|
/linux-4.1.27/arch/metag/include/asm/ |
H A D | fixmap.h | 33 * fixed-size 4k pages. (or larger if used with an increment
|
/linux-4.1.27/arch/arm/nwfpe/ |
H A D | milieu.h | 12 of this code was written as part of a project to build a fixed-point vector
|
/linux-4.1.27/mm/ |
H A D | cma.c | 217 * @fixed: hint about where to place the reserved area 225 * If @fixed is true, reserve contiguous area at exactly @base. If false, 231 bool fixed, struct cma **res_cma) cma_declare_contiguous() 276 fixed = false; cma_declare_contiguous() 283 * If allocating at a fixed base the request region must not cross the cma_declare_contiguous() 286 if (fixed && base < highmem_start && base + size > highmem_start) { cma_declare_contiguous() 302 if (fixed) { cma_declare_contiguous() 228 cma_declare_contiguous(phys_addr_t base, phys_addr_t size, phys_addr_t limit, phys_addr_t alignment, unsigned int order_per_bit, bool fixed, struct cma **res_cma) cma_declare_contiguous() argument
|
/linux-4.1.27/arch/powerpc/mm/ |
H A D | slice.c | 392 int fixed = (flags & MAP_FIXED); slice_get_unmapped_area() local 408 if (fixed && (addr & ((1ul << pshift) - 1))) slice_get_unmapped_area() 410 if (fixed && addr > (mm->task_size - len)) slice_get_unmapped_area() 414 if (!fixed && addr) { slice_get_unmapped_area() 452 if (fixed) slice_get_unmapped_area() 458 if (addr != 0 || fixed) { slice_get_unmapped_area() 491 if ((addr != 0 || fixed) && slice_check_fit(mask, potential_mask)) { slice_get_unmapped_area() 497 if (fixed) slice_get_unmapped_area() 674 * be fixed as the generic code gets fixed.
|
H A D | init_32.c | 153 /* Freescale Book-E parts expect lowmem to be mapped by fixed TLB MMU_init() 155 * in the fixed entries */ MMU_init()
|
/linux-4.1.27/drivers/hwmon/ |
H A D | htu21.c | 47 * optimized for integer fixed point (3 digits) arithmetic htu21_temp_ticks_to_millicelsius() 57 * optimized for integer fixed point (3 digits) arithmetic htu21_rh_ticks_to_per_cent_mille()
|
/linux-4.1.27/arch/sh/boards/mach-x3proto/ |
H A D | ilsel.c | 115 * ilsel_enable_fixed - Enable an ILSEL set at a fixed interrupt level 119 * Enables a given ILSEL source at a fixed interrupt level. Necessary
|
/linux-4.1.27/arch/mips/include/asm/sn/ |
H A D | kldir.h | 16 * The kldir memory area resides at a fixed place in each node's memory and 21 * below) reside at a permanently fixed location, but are included in the
|
/linux-4.1.27/arch/mn10300/proc-mn103e010/include/proc/ |
H A D | dmactl-regs.h | 45 #define DMxCTR_SAM_FIXED 0x00000040 /* - fixed */ 49 #define DMxCTR_DAM_FIXED 0x00000200 /* - fixed */
|
/linux-4.1.27/arch/mn10300/proc-mn2ws0050/include/proc/ |
H A D | dmactl-regs.h | 48 #define DMxCTR_SAM_FIXED 0x00000040 /* - fixed */ 52 #define DMxCTR_DAM_FIXED 0x00000200 /* - fixed */
|
/linux-4.1.27/drivers/net/ethernet/cisco/enic/ |
H A D | vnic_resource.h | 28 /* The MAC address assigned to the CFG vNIC is fixed. */
|
/linux-4.1.27/drivers/net/ethernet/toshiba/ |
H A D | spider_net.h | 201 * 0000000 fixed to 0 203 * 000000 fixed to 0 207 * 000000 fixed to 0 211 * 00000 fixed to 0
|
/linux-4.1.27/drivers/input/misc/ |
H A D | rb532_button.c | 27 * mode the GPIO direction is fixed, so no change needed)
|
/linux-4.1.27/drivers/clk/socfpga/ |
H A D | clk-periph.c | 82 rc = of_property_read_u32(node, "fixed-divider", &fixed_div); __socfpga_periph_init()
|
/linux-4.1.27/arch/x86/platform/efi/ |
H A D | efi_32.c | 13 * supports physical mode addressing on SoftSDV. This is to be fixed
|
/linux-4.1.27/arch/xtensa/ |
H A D | Makefile | 43 # temporarily until string.h is fixed
|
/linux-4.1.27/arch/xtensa/include/asm/ |
H A D | fixmap.h | 33 * fixed-size 4k pages. (or larger if used with an increment
|
/linux-4.1.27/arch/sh/kernel/cpu/sh5/ |
H A D | probe.c | 56 * so we just copy over the existing definitions.. these can be fixed cpu_probe()
|
/linux-4.1.27/arch/sparc/lib/ |
H A D | bitext.c | 7 * We expect a couple of fixed sizes of requests, so a rotating counter, reset
|
/linux-4.1.27/arch/unicore32/include/mach/ |
H A D | regs-pci.h | 6 * AHB/PCI fixed physical address for pci addess configuration
|
/linux-4.1.27/drivers/clk/mxs/ |
H A D | clk-pll.c | 27 * The mxs pll is a fixed rate clock with power and gate control,
|
/linux-4.1.27/arch/mips/include/asm/mach-ath25/ |
H A D | ath25_platform.h | 7 * This is board-specific data that is stored in a "fixed" location in flash.
|
/linux-4.1.27/drivers/usb/gadget/function/ |
H A D | u_uvc.h | 59 * descriptor, the other elements point to the fixed default control
|
/linux-4.1.27/include/net/ |
H A D | red.h | 106 * max_P is a Q0.32 fixed point number (with 32 bits mantissa) 283 * NOTE: v->qavg is fixed point number with point at Wlog. red_calc_qavg_no_idle_time() 322 Taking into account, that qavg have fixed red_mark_probability() 394 /* v->qavg is fixed point number with point at Wlog */ red_adaptative_algo()
|
/linux-4.1.27/include/sound/ |
H A D | seq_oss.h | 75 /* default control rate: fixed */
|
/linux-4.1.27/arch/powerpc/platforms/85xx/ |
H A D | qemu_e500.c | 4 * This is intended to be a flexible device-tree-driven platform, not fixed
|
/linux-4.1.27/arch/score/include/asm/ |
H A D | fixmap.h | 29 * fixed-size 4k pages. (or larger if used with an increment
|
/linux-4.1.27/arch/sh/boards/ |
H A D | board-apsh4ad0a.c | 15 #include <linux/regulator/fixed.h>
|
H A D | board-polaris.c | 12 #include <linux/regulator/fixed.h>
|
H A D | board-sh2007.c | 9 #include <linux/regulator/fixed.h>
|