| /linux/drivers/clk/tegra/ |
| H A D | clk-periph-fixed.c | 19 struct tegra_clk_periph_fixed *fixed = to_tegra_clk_periph_fixed(hw); in tegra_clk_periph_fixed_is_enabled() local 20 u32 mask = 1 << (fixed->num % 32), value; in tegra_clk_periph_fixed_is_enabled() 22 value = readl(fixed->base + fixed->regs->enb_reg); in tegra_clk_periph_fixed_is_enabled() 24 value = readl(fixed->base + fixed->regs->rst_reg); in tegra_clk_periph_fixed_is_enabled() 34 struct tegra_clk_periph_fixed *fixed = to_tegra_clk_periph_fixed(hw); in tegra_clk_periph_fixed_enable() local 35 u32 mask = 1 << (fixed->num % 32); in tegra_clk_periph_fixed_enable() 37 writel(mask, fixed->base + fixed in tegra_clk_periph_fixed_enable() 44 struct tegra_clk_periph_fixed *fixed = to_tegra_clk_periph_fixed(hw); tegra_clk_periph_fixed_disable() local 54 struct tegra_clk_periph_fixed *fixed = to_tegra_clk_periph_fixed(hw); tegra_clk_periph_fixed_recalc_rate() local 79 struct tegra_clk_periph_fixed *fixed; tegra_clk_register_periph_fixed() local [all...] |
| /linux/drivers/clk/ |
| H A D | clk-fixed-rate.c | 6 * Fixed rate clock implementation 18 * DOC: basic fixed-rate clock that cannot gate 23 * rate - rate is always a fixed value. No clk_set_rate support 24 * parent - fixed parent. No clk_set_parent support 38 struct clk_fixed_rate *fixed = to_clk_fixed_rate(hw); in clk_fixed_rate_recalc_accuracy() local 40 if (fixed->flags & CLK_FIXED_RATE_PARENT_ACCURACY) in clk_fixed_rate_recalc_accuracy() 43 return fixed->fixed_accuracy; in clk_fixed_rate_recalc_accuracy() 71 struct clk_fixed_rate *fixed; in __clk_hw_register_fixed_rate() local 76 /* allocate fixed-rate clock */ in __clk_hw_register_fixed_rate() 78 fixed in __clk_hw_register_fixed_rate() 150 struct clk_fixed_rate *fixed; clk_hw_unregister_fixed_rate() local [all...] |
| H A D | clk-fixed-rate_test.c | 3 * KUnit test for clk fixed rate basic type 17 #include "clk-fixed-rate_test.h" 30 * @clk_fixed_flags: fixed rate specific clk flags 81 * Return: Registered fixed rate clk_hw or ERR_PTR on failure 102 * @hw: fixed rate clk to unregister upon test completion 120 * Test that clk_get_rate() on a fixed rate clk registered with 129 hw = clk_hw_register_fixed_rate(NULL, "test-fixed-rate", NULL, 0, fixed_rate); in clk_fixed_rate_rate_test() 140 * Test that clk_get_accuracy() on a fixed rate clk registered via 149 hw = clk_hw_register_fixed_rate_with_accuracy(NULL, "test-fixed-rate", in clk_fixed_rate_accuracy_test() 161 /* Test suite for a fixed rate clk without any parent */ [all …]
|
| /linux/Documentation/devicetree/bindings/regulator/ |
| H A D | fixed-regulator.yaml | 4 $id: http://devicetree.org/schemas/regulator/fixed-regulator.yaml# 7 title: Fixed Voltage regulators 15 regulator.yaml, can also be used. However a fixed voltage regulator is 25 const: regulator-fixed-clock 33 const: regulator-fixed-domain 53 - regulator-fixed 54 - regulator-fixed-clock 55 - regulator-fixed-domain 69 the compatible is chosen to regulator-fixed-clock. The clock binding 70 is mandatory if compatible is chosen to regulator-fixed-clock. [all …]
|
| /linux/drivers/net/wireless/ti/wlcore/ |
| H A D | io.h | 46 bool fixed) in wlcore_raw_write() argument 55 ret = wl->if_ops->write(wl->dev, addr, buf, len, fixed); in wlcore_raw_write() 64 bool fixed) in wlcore_raw_read() argument 73 ret = wl->if_ops->read(wl->dev, addr, buf, len, fixed); in wlcore_raw_read() 82 bool fixed) in wlcore_raw_read_data() argument 84 return wlcore_raw_read(wl, wl->rtable[reg], buf, len, fixed); in wlcore_raw_read_data() 89 bool fixed) in wlcore_raw_write_data() argument 91 return wlcore_raw_write(wl, wl->rtable[reg], buf, len, fixed); in wlcore_raw_write_data() 119 void *buf, size_t len, bool fixed) in wlcore_read() argument 125 return wlcore_raw_read(wl, physical, buf, len, fixed); in wlcore_read() [all …]
|
| /linux/arch/powerpc/include/asm/ |
| H A D | head-64.h | 23 * Fixed (location) sections are used by opening fixed sections and emitting 24 * fixed section entries into them before closing them. Multiple fixed sections 27 * Each fixed section created in a .S file must have corresponding linkage 30 * For each fixed section, code is generated into it in the order which it 31 * appears in the source. Fixed section entries can be placed at a fixed 125 .error "Fixed section exception vector misalignment"; \ 128 .error "Fixed section exception vector bad size"; \ 131 .error "Fixed section underflow"; \ 140 .error "Fixed section overflow"; \ 144 .error "Fixed entry overflow"; \ [all …]
|
| /linux/arch/arm/boot/dts/intel/axm/ |
| H A D | axm5516-cpus.dtsi | 77 cpu-release-addr = <0>; // Fixed by the boot loader 85 cpu-release-addr = <0>; // Fixed by the boot loader 93 cpu-release-addr = <0>; // Fixed by the boot loader 101 cpu-release-addr = <0>; // Fixed by the boot loader 109 cpu-release-addr = <0>; // Fixed by the boot loader 117 cpu-release-addr = <0>; // Fixed by the boot loader 125 cpu-release-addr = <0>; // Fixed by the boot loader 133 cpu-release-addr = <0>; // Fixed by the boot loader 141 cpu-release-addr = <0>; // Fixed by the boot loader 149 cpu-release-addr = <0>; // Fixed by the boot loader [all …]
|
| /linux/drivers/clk/uniphier/ |
| H A D | clk-uniphier-fixed-rate.c | 16 struct clk_fixed_rate *fixed; in uniphier_clk_register_fixed_rate() local 20 /* allocate fixed-rate clock */ in uniphier_clk_register_fixed_rate() 21 fixed = devm_kzalloc(dev, sizeof(*fixed), GFP_KERNEL); in uniphier_clk_register_fixed_rate() 22 if (!fixed) in uniphier_clk_register_fixed_rate() 31 fixed->fixed_rate = data->fixed_rate; in uniphier_clk_register_fixed_rate() 32 fixed->hw.init = &init; in uniphier_clk_register_fixed_rate() 34 ret = devm_clk_hw_register(dev, &fixed->hw); in uniphier_clk_register_fixed_rate() 38 return &fixed->hw; in uniphier_clk_register_fixed_rate()
|
| /linux/tools/perf/pmu-events/arch/x86/clearwaterforest/ |
| H A D | pipeline.json | 19 "BriefDescription": "Fixed Counter: Counts the number of unhalted core clock cycles.", 20 "Counter": "Fixed counter 1", 33 "BriefDescription": "Fixed Counter: Counts the number of unhalted reference clock cycles.", 34 "Counter": "Fixed counter 2", 44 … This event is not affected by core frequency changes and increments at a fixed frequency that is … 49 "BriefDescription": "Fixed Counter: Counts the number of unhalted core clock cycles.", 50 "Counter": "Fixed counter 1", 63 "BriefDescription": "Fixed Counter: Counts the number of instructions retired.", 64 "Counter": "Fixed counter 0", 66 …"PublicDescription": "Fixed Counter: Counts the number of instructions retired. Available PDIST co… [all …]
|
| /linux/arch/arm/boot/dts/broadcom/ |
| H A D | bcm11351.dtsi | 270 compatible = "fixed-clock"; 276 compatible = "fixed-clock"; 282 compatible = "fixed-clock"; 288 compatible = "fixed-clock"; 294 compatible = "fixed-clock"; 300 compatible = "fixed-clock"; 306 compatible = "fixed-clock"; 312 compatible = "fixed-clock"; 318 compatible = "fixed-clock"; 324 compatible = "fixed-clock"; [all …]
|
| H A D | bcm2166x-common.dtsi | 204 * Fixed clocks are defined before CCUs whose 210 compatible = "fixed-clock"; 216 compatible = "fixed-clock"; 222 compatible = "fixed-clock"; 228 compatible = "fixed-clock"; 234 compatible = "fixed-clock"; 240 compatible = "fixed-clock"; 246 compatible = "fixed-clock"; 252 compatible = "fixed-clock"; 258 compatible = "fixed-clock"; [all …]
|
| /linux/drivers/acpi/acpica/ |
| H A D | evxfevnt.c | 134 * PARAMETERS: event - The fixed eventto be enabled in ACPI_EXPORT_SYMBOL() 139 * DESCRIPTION: Enable an ACPI event (fixed) in ACPI_EXPORT_SYMBOL() 149 /* If Hardware Reduced flag is set, there are no fixed events */ in ACPI_EXPORT_SYMBOL() 155 /* Decode the Fixed Event */ in ACPI_EXPORT_SYMBOL() 162 * Enable the requested fixed event (by writing a one to the enable in ACPI_EXPORT_SYMBOL() 197 * PARAMETERS: event - The fixed event to be disabled in ACPI_EXPORT_SYMBOL() 202 * DESCRIPTION: Disable an ACPI event (fixed) in ACPI_EXPORT_SYMBOL() 212 /* If Hardware Reduced flag is set, there are no fixed events */ in ACPI_EXPORT_SYMBOL() 218 /* Decode the Fixed Event */ in ACPI_EXPORT_SYMBOL() 225 * Disable the requested fixed event (by writing a zero to the enable in ACPI_EXPORT_SYMBOL() [all …]
|
| H A D | evevent.c | 4 * Module Name: evevent - Fixed Event handling and dispatch 30 * DESCRIPTION: Initialize global data structures for ACPI events (Fixed, GPE) 40 /* If Hardware Reduced flag is set, there are no fixed events */ in acpi_ev_initialize_events() 47 * Initialize the Fixed and General Purpose Events. This is done prior to in acpi_ev_initialize_events() 54 "Unable to initialize fixed events")); in acpi_ev_initialize_events() 122 * DESCRIPTION: Install the fixed event handlers and disable all fixed events. 132 * Initialize the structure that keeps track of fixed event handlers and in acpi_ev_fixed_event_initialize() 133 * disable all of the fixed events. in acpi_ev_fixed_event_initialize() 139 /* Disable the fixed event */ in acpi_ev_fixed_event_initialize() 163 * DESCRIPTION: Checks the PM status register for active fixed events [all …]
|
| /linux/drivers/clk/sunxi/ |
| H A D | clk-a10-hosc.c | 20 struct clk_fixed_rate *fixed; in sun4i_osc_clk_setup() local 28 /* allocate fixed-rate and gate clock structs */ in sun4i_osc_clk_setup() 29 fixed = kzalloc_obj(struct clk_fixed_rate); in sun4i_osc_clk_setup() 30 if (!fixed) in sun4i_osc_clk_setup() 38 /* set up gate and fixed rate properties */ in sun4i_osc_clk_setup() 42 fixed->fixed_rate = rate; in sun4i_osc_clk_setup() 47 &fixed->hw, &clk_fixed_rate_ops, in sun4i_osc_clk_setup() 60 kfree(fixed); in sun4i_osc_clk_setup()
|
| /linux/fs/befs/ |
| H A D | ChangeLog | 7 * Fixed module makefile problem. It was not compiling all the correct 10 * Fixed potential null pointer dereference when reporting an error 14 * Oy! Fixed stupid bug that would cause an unresolved symbol error. 29 * Fixed up some places where I assumed that a long int could hold 46 * Fixed bug in befs_find_brun_indirect() that would result in the wrong 50 * Fixed a longstanding bug in befs_find_key() that would result in it 71 * Fixed makefile for module install [WD] 98 * Fixed stupid bug where specifying the uid or gid mount options as '0' 142 default linux-supplied implementation. Fixed. Works now. 147 priority parameter to kmalloc(). Fixed. [all …]
|
| /linux/arch/arm64/boot/dts/xilinx/ |
| H A D | versal-net-clk.dtsi | 3 * dts file for Xilinx Versal NET fixed clock 13 compatible = "fixed-clock"; 19 compatible = "fixed-clock"; 25 compatible = "fixed-clock"; 31 compatible = "fixed-clock"; 37 compatible = "fixed-clock"; 43 compatible = "fixed-clock"; 49 compatible = "fixed-clock"; 55 compatible = "fixed-clock"; 61 compatible = "fixed-clock"; [all …]
|
| /linux/arch/arm64/boot/dts/amlogic/ |
| H A D | amlogic-c3-c308l-aw419.dts | 42 compatible = "regulator-fixed"; 51 compatible = "regulator-fixed"; 61 compatible = "regulator-fixed"; 71 compatible = "regulator-fixed"; 81 compatible = "regulator-fixed"; 91 compatible = "regulator-fixed"; 101 compatible = "regulator-fixed"; 111 compatible = "regulator-fixed"; 121 compatible = "regulator-fixed"; 131 compatible = "regulator-fixed"; [all …]
|
| H A D | amlogic-c3-c302x-aw409.dts | 41 compatible = "regulator-fixed"; 50 compatible = "regulator-fixed"; 60 compatible = "regulator-fixed"; 70 compatible = "regulator-fixed"; 80 compatible = "regulator-fixed"; 90 compatible = "regulator-fixed"; 100 compatible = "regulator-fixed"; 110 compatible = "regulator-fixed"; 120 compatible = "regulator-fixed"; 130 compatible = "regulator-fixed"; [all …]
|
| /linux/arch/arm/boot/dts/st/ |
| H A D | stm32mp157a-icore-stm32mp1.dtsi | 59 compatible = "regulator-fixed"; 67 compatible = "regulator-fixed"; 75 compatible = "regulator-fixed"; 83 compatible = "regulator-fixed"; 91 compatible = "regulator-fixed"; 99 compatible = "regulator-fixed"; 108 compatible = "regulator-fixed"; 117 compatible = "regulator-fixed"; 125 compatible = "regulator-fixed"; 133 compatible = "regulator-fixed"; [all …]
|
| /linux/arch/arm/boot/dts/ti/omap/ |
| H A D | am33xx-clocks.dtsi | 19 compatible = "fixed-factor-clock"; 28 compatible = "fixed-factor-clock"; 37 compatible = "fixed-factor-clock"; 46 compatible = "fixed-factor-clock"; 55 compatible = "fixed-factor-clock"; 64 compatible = "fixed-factor-clock"; 73 compatible = "fixed-factor-clock"; 82 compatible = "fixed-factor-clock"; 91 compatible = "fixed-factor-clock"; 100 compatible = "fixed-factor-clock"; [all …]
|
| H A D | dm814x-clocks.dtsi | 187 compatible = "fixed-clock"; 212 compatible = "fixed-clock"; 219 compatible = "fixed-clock"; 226 compatible = "fixed-clock"; 232 compatible = "fixed-clock"; 238 compatible = "fixed-clock"; 244 compatible = "fixed-clock"; 252 compatible = "fixed-factor-clock"; 266 /* Fixed divider clock 0.0016384 * devosc */ 269 compatible = "fixed-factor-clock"; [all …]
|
| H A D | am43xx-clocks.dtsi | 37 compatible = "fixed-factor-clock"; 46 compatible = "fixed-factor-clock"; 55 compatible = "fixed-factor-clock"; 64 compatible = "fixed-factor-clock"; 73 compatible = "fixed-factor-clock"; 82 compatible = "fixed-factor-clock"; 91 compatible = "fixed-factor-clock"; 100 compatible = "fixed-factor-clock"; 109 compatible = "fixed-factor-clock"; 118 compatible = "fixed-factor-clock"; [all …]
|
| /linux/drivers/gpu/drm/amd/display/dc/dce110/ |
| H A D | dce110_opp_csc_v.c | 129 /* fixed S2.13 format */ in program_color_matrix_v() 147 /* fixed S2.13 format */ in program_color_matrix_v() 153 /* fixed S0.13 format */ in program_color_matrix_v() 165 /* fixed S2.13 format */ in program_color_matrix_v() 171 /* fixed S2.13 format */ in program_color_matrix_v() 183 /* fixed S2.13 format */ in program_color_matrix_v() 189 /* fixed S0.13 format */ in program_color_matrix_v() 201 /* fixed S2.13 format */ in program_color_matrix_v() 207 /* fixed S0.13 format */ in program_color_matrix_v() 219 /* fixed S2.13 format */ in program_color_matrix_v() [all …]
|
| /linux/Documentation/devicetree/bindings/clock/ |
| H A D | fixed-factor-clock.yaml | 4 $id: http://devicetree.org/schemas/clock/fixed-factor-clock.yaml# 7 title: Simple fixed factor rate clock sources 17 If the frequency is fixed, the preferred name is 'clock-<freq>' with 25 - fixed-factor-clock 34 description: Fixed divider 39 description: Fixed multiplier 57 compatible = "fixed-factor-clock";
|
| H A D | cirrus,lochnagar.yaml | 59 - ln-pmic-32k # On board fixed clock. 60 - ln-clk-12m # On board fixed clock. 61 - ln-clk-11m # On board fixed clock. 62 - ln-clk-24m # On board fixed clock. 63 - ln-clk-22m # On board fixed clock. 64 - ln-clk-8m # On board fixed clock. 65 - ln-usb-clk-24m # On board fixed clock. 66 - ln-usb-clk-12m # On board fixed clock.
|