Home
last modified time | relevance | path

Searched full:fixed (Results 1 – 25 of 5541) sorted by relevance

12345678910>>...222

/kernel/linux/linux-5.10/drivers/clk/tegra/
Dclk-periph-fixed.c19 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->regs->enb_set_reg); in tegra_clk_periph_fixed_enable()
44 struct tegra_clk_periph_fixed *fixed = to_tegra_clk_periph_fixed(hw); in tegra_clk_periph_fixed_disable() local
45 u32 mask = 1 << (fixed->num % 32); in tegra_clk_periph_fixed_disable()
47 writel(mask, fixed->base + fixed->regs->enb_clr_reg); in tegra_clk_periph_fixed_disable()
[all …]
/kernel/linux/linux-4.19/drivers/clk/tegra/
Dclk-periph-fixed.c29 struct tegra_clk_periph_fixed *fixed = to_tegra_clk_periph_fixed(hw); in tegra_clk_periph_fixed_is_enabled() local
30 u32 mask = 1 << (fixed->num % 32), value; in tegra_clk_periph_fixed_is_enabled()
32 value = readl(fixed->base + fixed->regs->enb_reg); in tegra_clk_periph_fixed_is_enabled()
34 value = readl(fixed->base + fixed->regs->rst_reg); in tegra_clk_periph_fixed_is_enabled()
44 struct tegra_clk_periph_fixed *fixed = to_tegra_clk_periph_fixed(hw); in tegra_clk_periph_fixed_enable() local
45 u32 mask = 1 << (fixed->num % 32); in tegra_clk_periph_fixed_enable()
47 writel(mask, fixed->base + fixed->regs->enb_set_reg); in tegra_clk_periph_fixed_enable()
54 struct tegra_clk_periph_fixed *fixed = to_tegra_clk_periph_fixed(hw); in tegra_clk_periph_fixed_disable() local
55 u32 mask = 1 << (fixed->num % 32); in tegra_clk_periph_fixed_disable()
57 writel(mask, fixed->base + fixed->regs->enb_clr_reg); in tegra_clk_periph_fixed_disable()
[all …]
/kernel/linux/linux-5.10/drivers/clk/
Dclk-fixed-rate.c6 * 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()
59 struct clk_fixed_rate *fixed; in __clk_hw_register_fixed_rate() local
64 /* allocate fixed-rate clock */ in __clk_hw_register_fixed_rate()
65 fixed = kzalloc(sizeof(*fixed), GFP_KERNEL); in __clk_hw_register_fixed_rate()
[all …]
/kernel/linux/linux-4.19/drivers/clk/
Dclk-fixed-rate.c9 * Fixed rate clock implementation
21 * DOC: basic fixed-rate clock that cannot gate
26 * rate - rate is always a fixed value. No clk_set_rate support
27 * parent - fixed parent. No clk_set_parent support
49 * clk_hw_register_fixed_rate_with_accuracy - register fixed-rate clock with
62 struct clk_fixed_rate *fixed; in clk_hw_register_fixed_rate_with_accuracy() local
67 /* allocate fixed-rate clock */ in clk_hw_register_fixed_rate_with_accuracy()
68 fixed = kzalloc(sizeof(*fixed), GFP_KERNEL); in clk_hw_register_fixed_rate_with_accuracy()
69 if (!fixed) in clk_hw_register_fixed_rate_with_accuracy()
79 fixed->fixed_rate = fixed_rate; in clk_hw_register_fixed_rate_with_accuracy()
[all …]
/kernel/linux/linux-5.10/drivers/hid/
Dhid-uclogic-rdesc.h4 * - original and fixed report descriptors
25 /* Fixed WP4030U report descriptor */
29 /* Fixed WP5540U report descriptor */
33 /* Fixed WP8060U report descriptor */
43 /* Fixed WP1062 report descriptor */
50 /* Fixed PF1209 report descriptor */
59 /* Fixed PID 0522 tablet report descriptor, interface 0 (stylus) */
63 /* Fixed PID 0522 tablet report descriptor, interface 1 (mouse) */
67 /* Fixed PID 0522 tablet report descriptor, interface 2 (frame buttons) */
75 /* Fixed TWHA60 report descriptor, interface 0 (stylus) */
[all …]
/kernel/linux/linux-4.19/Documentation/filesystems/
Dhpfs.txt210 0.91 Fixed bug that caused shooting to memory when write_inode was called on
212 0.92 Fixed a little memory leak in freeing directory inodes
213 0.93 Fixed bug that locked up the machine when there were too many filenames
215 Fixed write_file to zero file when writing behind file end
216 0.94 Fixed a little memory leak when trying to delete busy file or directory
217 0.95 Fixed a bug that i_hpfs_parent_dir was not updated when moving files
219 1.91 Fixed a bug that chk_sectors failed when sectors were at the end of disk
220 Fixed a race-condition when write_inode is called while deleting file
221 Fixed a bug that could possibly happen (with very low probability) when
234 Fixed a possible problem with disks > 64G (but I don't have one, so I can't
[all …]
/kernel/linux/linux-5.10/drivers/clk/uniphier/
Dclk-uniphier-fixed-rate.c16 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()
30 fixed->fixed_rate = data->fixed_rate; in uniphier_clk_register_fixed_rate()
31 fixed->hw.init = &init; in uniphier_clk_register_fixed_rate()
33 ret = devm_clk_hw_register(dev, &fixed->hw); in uniphier_clk_register_fixed_rate()
37 return &fixed->hw; in uniphier_clk_register_fixed_rate()
/kernel/linux/linux-5.10/arch/arm/boot/dts/
Daxm5516-cpus.dtsi77 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 …]
Dbcm11351.dtsi282 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";
330 compatible = "fixed-clock";
336 compatible = "fixed-clock";
[all …]
Dam33xx-clocks.dtsi18 compatible = "fixed-factor-clock";
26 compatible = "fixed-factor-clock";
34 compatible = "fixed-factor-clock";
42 compatible = "fixed-factor-clock";
50 compatible = "fixed-factor-clock";
58 compatible = "fixed-factor-clock";
66 compatible = "fixed-factor-clock";
74 compatible = "fixed-factor-clock";
82 compatible = "fixed-factor-clock";
90 compatible = "fixed-factor-clock";
[all …]
/kernel/linux/linux-4.19/arch/arm/boot/dts/
Daxm5516-cpus.dtsi81 cpu-release-addr = <0>; // Fixed by the boot loader
89 cpu-release-addr = <0>; // Fixed by the boot loader
97 cpu-release-addr = <0>; // Fixed by the boot loader
105 cpu-release-addr = <0>; // Fixed by the boot loader
113 cpu-release-addr = <0>; // Fixed by the boot loader
121 cpu-release-addr = <0>; // Fixed by the boot loader
129 cpu-release-addr = <0>; // Fixed by the boot loader
137 cpu-release-addr = <0>; // Fixed by the boot loader
145 cpu-release-addr = <0>; // Fixed by the boot loader
153 cpu-release-addr = <0>; // Fixed by the boot loader
[all …]
Dam33xx-clocks.dtsi21 compatible = "fixed-factor-clock";
29 compatible = "fixed-factor-clock";
37 compatible = "fixed-factor-clock";
45 compatible = "fixed-factor-clock";
53 compatible = "fixed-factor-clock";
61 compatible = "fixed-factor-clock";
69 compatible = "fixed-factor-clock";
77 compatible = "fixed-factor-clock";
85 compatible = "fixed-factor-clock";
93 compatible = "fixed-factor-clock";
[all …]
Dbcm11351.dtsi282 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";
330 compatible = "fixed-clock";
336 compatible = "fixed-clock";
[all …]
Dam43xx-clocks.dtsi37 compatible = "fixed-factor-clock";
45 compatible = "fixed-factor-clock";
53 compatible = "fixed-factor-clock";
61 compatible = "fixed-factor-clock";
69 compatible = "fixed-factor-clock";
77 compatible = "fixed-factor-clock";
85 compatible = "fixed-factor-clock";
93 compatible = "fixed-factor-clock";
101 compatible = "fixed-factor-clock";
109 compatible = "fixed-factor-clock";
[all …]
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
Dhead-64.h23 * 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
129 .error "Fixed section exception vector misalignment"; \
132 .error "Fixed section exception vector bad size"; \
135 .error "Fixed section underflow"; \
144 .error "Fixed section overflow"; \
148 .error "Fixed entry overflow"; \
[all …]
/kernel/linux/linux-5.10/drivers/net/wireless/ti/wlcore/
Dio.h46 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 …]
/kernel/linux/linux-4.19/Documentation/devicetree/bindings/net/
Dfixed-link.txt1 Fixed link Device Tree binding
4 Some Ethernet MACs have a "fixed link", and are not connected to a
6 binding allows to describe a "fixed link".
8 Such a fixed link situation is described by creating a 'fixed-link'
23 Old, deprecated 'fixed-link' binding:
25 * A 'fixed-link' property in the Ethernet MAC node, with 5 cells, of the
28 fixed-links, from 0 to 31
39 fixed-link {
48 fixed-link {
/kernel/linux/linux-4.19/drivers/clk/uniphier/
Dclk-uniphier-fixed-rate.c25 struct clk_fixed_rate *fixed; in uniphier_clk_register_fixed_rate() local
29 /* allocate fixed-rate clock */ in uniphier_clk_register_fixed_rate()
30 fixed = devm_kzalloc(dev, sizeof(*fixed), GFP_KERNEL); in uniphier_clk_register_fixed_rate()
31 if (!fixed) in uniphier_clk_register_fixed_rate()
39 fixed->fixed_rate = data->fixed_rate; in uniphier_clk_register_fixed_rate()
40 fixed->hw.init = &init; in uniphier_clk_register_fixed_rate()
42 ret = devm_clk_hw_register(dev, &fixed->hw); in uniphier_clk_register_fixed_rate()
46 return &fixed->hw; in uniphier_clk_register_fixed_rate()
/kernel/linux/linux-4.19/drivers/net/wireless/ti/wlcore/
Dio.h60 bool fixed) in wlcore_raw_write() argument
69 ret = wl->if_ops->write(wl->dev, addr, buf, len, fixed); in wlcore_raw_write()
78 bool fixed) in wlcore_raw_read() argument
87 ret = wl->if_ops->read(wl->dev, addr, buf, len, fixed); in wlcore_raw_read()
96 bool fixed) in wlcore_raw_read_data() argument
98 return wlcore_raw_read(wl, wl->rtable[reg], buf, len, fixed); in wlcore_raw_read_data()
103 bool fixed) in wlcore_raw_write_data() argument
105 return wlcore_raw_write(wl, wl->rtable[reg], buf, len, fixed); in wlcore_raw_write_data()
133 void *buf, size_t len, bool fixed) in wlcore_read() argument
139 return wlcore_raw_read(wl, physical, buf, len, fixed); in wlcore_read()
[all …]
/kernel/linux/linux-5.10/Documentation/filesystems/
Dhpfs.rst229 0.91 Fixed bug that caused shooting to memory when write_inode was called on
231 0.92 Fixed a little memory leak in freeing directory inodes
232 0.93 Fixed bug that locked up the machine when there were too many filenames
234 Fixed write_file to zero file when writing behind file end
235 0.94 Fixed a little memory leak when trying to delete busy file or directory
236 0.95 Fixed a bug that i_hpfs_parent_dir was not updated when moving files
238 1.91 Fixed a bug that chk_sectors failed when sectors were at the end of disk
239 Fixed a race-condition when write_inode is called while deleting file
240 Fixed a bug that could possibly happen (with very low probability) when
262 Fixed a possible problem with disks > 64G (but I don't have one, so I can't
[all …]
/kernel/linux/linux-5.10/drivers/clk/sunxi/
Dclk-a10-hosc.c20 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(sizeof(struct clk_fixed_rate), GFP_KERNEL); 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()
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/regulator/
Dfixed-regulator.yaml4 $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
26 const: regulator-fixed-clock
33 - regulator-fixed
34 - regulator-fixed-clock
45 the compatible is chosen to regulator-fixed-clock. The clock binding
46 is mandatory if compatible is chosen to regulator-fixed-clock.
81 compatible = "regulator-fixed";
/kernel/linux/linux-4.19/drivers/clk/sunxi/
Dclk-a10-hosc.c29 struct clk_fixed_rate *fixed; in sun4i_osc_clk_setup() local
37 /* allocate fixed-rate and gate clock structs */ in sun4i_osc_clk_setup()
38 fixed = kzalloc(sizeof(struct clk_fixed_rate), GFP_KERNEL); in sun4i_osc_clk_setup()
39 if (!fixed) in sun4i_osc_clk_setup()
47 /* set up gate and fixed rate properties */ in sun4i_osc_clk_setup()
51 fixed->fixed_rate = rate; in sun4i_osc_clk_setup()
56 &fixed->hw, &clk_fixed_rate_ops, in sun4i_osc_clk_setup()
69 kfree(fixed); in sun4i_osc_clk_setup()
/kernel/linux/linux-4.19/drivers/acpi/acpica/
Devxfevnt.c134 * 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 …]
/kernel/linux/linux-5.10/drivers/acpi/acpica/
Devxfevnt.c134 * 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 …]

12345678910>>...222