Home
last modified time | relevance | path

Searched full:super (Results 1 – 25 of 667) sorted by relevance

12345678910>>...27

/linux/drivers/clk/tegra/
H A Dclk-super.c83 * For LP mode super-clock switch between PLLX direct in clk_super_set_parent()
148 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in clk_super_determine_rate() local
149 struct clk_hw *div_hw = &super->frac_div.hw; in clk_super_determine_rate()
153 return super->div_ops->determine_rate(div_hw, req); in clk_super_determine_rate()
159 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in clk_super_recalc_rate() local
160 struct clk_hw *div_hw = &super->frac_div.hw; in clk_super_recalc_rate()
164 return super->div_ops->recalc_rate(div_hw, parent_rate); in clk_super_recalc_rate()
170 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in clk_super_set_rate() local
171 struct clk_hw *div_hw = &super->frac_div.hw; in clk_super_set_rate()
175 return super->div_ops->set_rate(div_hw, rate, parent_rate); in clk_super_set_rate()
[all …]
H A Dclk-tegra-super-cclk.c3 * Based on clk-super.c
52 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in cclk_super_recalc_rate() local
53 u32 val = readl_relaxed(super->reg); in cclk_super_recalc_rate()
73 struct tegra_clk_super_mux *super = to_clk_super_mux(hw); in cclk_super_determine_rate() local
87 if (super->flags & TEGRA20_SUPER_CLK) in cclk_super_determine_rate()
137 struct tegra_clk_super_mux *super; in tegra_clk_register_super_cclk() local
145 super = kzalloc_obj(*super); in tegra_clk_register_super_cclk()
146 if (!super) in tegra_clk_register_super_cclk()
154 super->reg = reg; in tegra_clk_register_super_cclk()
155 super->lock = lock; in tegra_clk_register_super_cclk()
[all …]
/linux/rust/kernel/sync/atomic/
H A Dpredefine.rs14 unsafe impl super::AtomicType for bool {
20 unsafe impl super::AtomicType for i8 {
26 unsafe impl super::AtomicType for i16 {
36 unsafe impl<T: Sized> super::AtomicType for *mut T {
46 unsafe impl<T: Sized> super::AtomicType for *const T {
52 unsafe impl super::AtomicType for i32 {
57 unsafe impl super::AtomicAdd<i32> for i32 {
65 unsafe impl super::AtomicType for i64 {
70 unsafe impl super::AtomicAdd<i64> for i64 { in rhs_into_delta()
105 unsafe impl super
[all...]
/linux/tools/testing/selftests/net/lib/py/
H A Dynl.py43 super().__init__((SPEC_PATH / Path('ethtool.yaml')).as_posix(),
49 super().__init__((SPEC_PATH / Path('rt-link.yaml')).as_posix(),
54 super().__init__((SPEC_PATH / Path('rt-addr.yaml')).as_posix(),
59 super().__init__((SPEC_PATH / Path('rt-route.yaml')).as_posix(),
64 super().__init__((SPEC_PATH / Path('netdev.yaml')).as_posix(),
69 super().__init__((SPEC_PATH / Path('net_shaper.yaml')).as_posix(),
75 super().__init__((SPEC_PATH / Path('nlctrl.yaml')).as_posix(),
81 super().__init__((SPEC_PATH / Path('devlink.yaml')).as_posix(),
86 super().__init__((SPEC_PATH / Path('psp.yaml')).as_posix(),
/linux/Documentation/hwmon/
H A Dw83627hf.rst7 Addresses scanned: ISA address retrieved from Super I/O registers
10 Addresses scanned: ISA address retrieved from Super I/O registers
13 Addresses scanned: ISA address retrieved from Super I/O registers
16 Addresses scanned: ISA address retrieved from Super I/O registers
19 Addresses scanned: ISA address retrieved from Super I/O registers
42 the Winbond W83627HF, W83627THF, W83697HF and W83637HF Super I/O chips.
47 Super I/O chip and a second i2c-only Winbond chip (often a W83782D),
51 If you really want i2c accesses for these Super I/O chips,
78 # Enter the Super I/O config space::
92 # Exit the Super-I/O config space::
[all …]
H A Dw83627ehf.rst10 Addresses scanned: ISA address retrieved from Super I/O registers
18 Addresses scanned: ISA address retrieved from Super I/O registers
26 Addresses scanned: ISA address retrieved from Super I/O registers
34 Addresses scanned: ISA address retrieved from Super I/O registers
42 Addresses scanned: ISA address retrieved from Super I/O registers
50 Addresses scanned: ISA address retrieved from Super I/O registers
58 Addresses scanned: ISA address retrieved from Super I/O registers
66 Addresses scanned: ISA address retrieved from Super I/O registers
84 (NCT6775F), and NCT6776F super I/O chips. We will refer to them collectively
H A Dsmsc47m1.rst10 Addresses scanned: none, address read from Super I/O config space
26 Addresses scanned: none, address read from Super I/O config space
34 Addresses scanned: none, address read from Super I/O config space
56 The Standard Microsystems Corporation (SMSC) 47M1xx Super I/O chips
/linux/drivers/nvdimm/
H A Dbtt.c61 static int btt_info_write(struct arena_info *arena, struct btt_sb *super) in btt_info_write() argument
75 ret = arena_write_bytes(arena, arena->info2off, super, in btt_info_write()
80 return arena_write_bytes(arena, arena->infooff, super, in btt_info_write()
84 static int btt_info_read(struct arena_info *arena, struct btt_sb *super) in btt_info_read() argument
86 return arena_read_bytes(arena, arena->infooff, super, in btt_info_read()
774 /* Two pages are reserved for the super block and its copy */ in alloc_arena()
820 static void parse_arena_meta(struct arena_info *arena, struct btt_sb *super, in parse_arena_meta() argument
823 arena->internal_nlba = le32_to_cpu(super->internal_nlba); in parse_arena_meta()
824 arena->internal_lbasize = le32_to_cpu(super->internal_lbasize); in parse_arena_meta()
825 arena->external_nlba = le32_to_cpu(super->external_nlba); in parse_arena_meta()
[all …]
H A Dbtt_devs.c231 * @super: pointer to the arena's info block being tested
240 bool nd_btt_arena_is_valid(struct nd_btt *nd_btt, struct btt_sb *super) in nd_btt_arena_is_valid() argument
246 if (memcmp(super->signature, BTT_SIG, BTT_SIG_LEN) != 0) in nd_btt_arena_is_valid()
249 import_uuid(&parent_uuid, super->parent_uuid); in nd_btt_arena_is_valid()
254 checksum = le64_to_cpu(super->checksum); in nd_btt_arena_is_valid()
255 super->checksum = 0; in nd_btt_arena_is_valid()
256 if (checksum != nd_sb_checksum((struct nd_gen_sb *) super)) in nd_btt_arena_is_valid()
258 super->checksum = cpu_to_le64(checksum); in nd_btt_arena_is_valid()
261 if ((le32_to_cpu(super->flags) & IB_FLAG_ERROR_MASK) != 0) in nd_btt_arena_is_valid()
/linux/Documentation/devicetree/bindings/usb/
H A Dusb.yaml56 - super-speed
57 - super-speed-plus
58 - super-speed-plus-gen2x1
59 - super-speed-plus-gen1x2
60 - super-speed-plus-gen2x2
/linux/fs/befs/
H A Ddebug.c152 * Display super block structure for debug.
227 befs_disk_btree_super *super) in befs_dump_index_entry() argument
231 befs_debug(sb, "Btree super structure"); in befs_dump_index_entry()
232 befs_debug(sb, " magic %08x", fs32_to_cpu(sb, super->magic)); in befs_dump_index_entry()
233 befs_debug(sb, " node_size %u", fs32_to_cpu(sb, super->node_size)); in befs_dump_index_entry()
234 befs_debug(sb, " max_depth %08x", fs32_to_cpu(sb, super->max_depth)); in befs_dump_index_entry()
236 befs_debug(sb, " data_type %08x", fs32_to_cpu(sb, super->data_type)); in befs_dump_index_entry()
238 fs64_to_cpu(sb, super->root_node_ptr)); in befs_dump_index_entry()
240 fs64_to_cpu(sb, super->free_node_ptr)); in befs_dump_index_entry()
242 fs64_to_cpu(sb, super->max_size)); in befs_dump_index_entry()
H A DChangeLog103 (super.c, debug.c) [WD]
148 (datastream.c, btree.c super.c inode.c) [WD]
160 (super.c inode.c) [WD]
171 is the new way. (inode.c, super.c) [WD]
187 symlink string). (super.c, inode.c, befs_fs.h) [WD]
212 fields set (inode.c and super.c).
239 (super.c). Now we check to see if log_start and log_end differ. If so,
242 * Fixed an extra instance of MOD_DEC_USE_COUNT in super.c
335 (fs/befs/super.c) (fs/befs/inode.c)
341 (fs/befs/super.c)
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Dbase.c183 if (disp->super.wq) { in nvkm_disp_dtor()
184 destroy_workqueue(disp->super.wq); in nvkm_disp_dtor()
185 mutex_destroy(&disp->super.mutex); in nvkm_disp_dtor()
251 if (func->super) { in nvkm_disp_new_()
252 disp->super.wq = create_singlethread_workqueue("nvkm-disp"); in nvkm_disp_new_()
253 if (!disp->super.wq) in nvkm_disp_new_()
256 INIT_WORK(&disp->super.work, func->super); in nvkm_disp_new_()
257 mutex_init(&disp->super.mutex); in nvkm_disp_new_()
/linux/fs/zonefs/
H A Dzonefs.h140 * On-disk super block (block 0).
176 * Feature flags: specified in the s_features field of the on-disk super
186 * Use super block specified UID for files instead of default 0.
190 * Use super block specified GID for files instead of default 0.
194 * Use super block specified file permissions instead of default 640.
215 * In-memory Super block information.
258 /* In super.c */
274 /* In super.c */
/linux/drivers/net/wireless/ath/carl9170/
H A Dtx.c110 struct _carl9170_tx_superframe *super = (void *) skb->data; in __carl9170_get_tx_sta() local
111 struct ieee80211_hdr *hdr = (void *) super->frame_data; in __carl9170_get_tx_sta()
115 vif_id = (super->s.misc & CARL9170_TX_SUPER_MISC_VIF_ID) >> in __carl9170_get_tx_sta()
192 struct _carl9170_tx_superframe *super; in carl9170_alloc_dev_space() local
213 super = (void *) skb->data; in carl9170_alloc_dev_space()
222 super->s.cookie = (u8) cookie + 1; in carl9170_alloc_dev_space()
228 struct _carl9170_tx_superframe *super = (void *) skb->data; in carl9170_release_dev_space() local
232 cookie = super->s.cookie; in carl9170_release_dev_space()
234 super->s.cookie = 0; in carl9170_release_dev_space()
294 struct _carl9170_tx_superframe *super; in carl9170_tx_release() local
[all …]
/linux/arch/powerpc/include/asm/nohash/32/
H A Dmmu-44x.h50 #define PPC44x_TLB_SX 0x00000004 /* Super execution */
51 #define PPC44x_TLB_SW 0x00000002 /* Super write */
52 #define PPC44x_TLB_SR 0x00000001 /* Super read */
95 #define PPC47x_TLB2_SX 0x00000004 /* Super execution */
96 #define PPC47x_TLB2_SW 0x00000002 /* Super write */
97 #define PPC47x_TLB2_SR 0x00000001 /* Super read */
/linux/tools/crypto/ccp/
H A Dtest_dbc.py38 super().__init__(data)
42 return super().setUp()
47 return super().tearDown()
55 super().setUp()
68 super().__init__(data)
76 return super().setUp()
128 return super().setUp()
188 super().setUp()
/linux/tools/net/ynl/pyynl/lib/
H A Dnlspec.py85 super().__init__(enum_set.family, yaml)
123 super().__init__(family, yaml)
180 super().__init__(family, yaml)
211 super().__init__(family, yaml)
269 super().__init__(family, yaml)
287 super().__init__(family, yaml)
314 super().__init__(family, yaml)
336 super().__init__(family, yaml)
363 super().__init__(family, yaml)
380 self.resolve_up(super())
[all …]
/linux/fs/nilfs2/
H A Dsegment.h24 * @ri_super_root: Block number of the last super root
51 #define NILFS_RECOVERY_SR_UPDATED 1 /* The super root was updated */
179 NILFS_SC_SUPER_ROOT, /* The latest segment has a super root */
208 * logical segment with a super root.
211 * Maximum frequency of super root
220 /* super.c */
H A Dthe_nilfs.h31 THE_NILFS_SB_DIRTY, /* super block is dirty */
39 * @ns_sb: back pointer to super block instance
43 * @ns_sbh: buffer heads of on-disk super blocks
44 * @ns_sbp: pointers to super block data
45 * @ns_sbwtime: previous write time of super block
46 * @ns_sbwcount: write count of super block
47 * @ns_sbsize: size of valid data in super block
130 * written to disk with a super root. These fields are protected by
/linux/scripts/gdb/linux/
H A Dtasks.py52 super(LxTaskByPidFunc, self).__init__("lx_task_by_pid")
69 super(LxPs, self).__init__("lx-ps", gdb.COMMAND_DATA)
101 super(LxThreadInfoFunc, self).__init__("lx_thread_info")
117 super(LxThreadInfoByPidFunc, self).__init__("lx_thread_info_by_pid")
H A Ddevice.py101 super(LxDeviceListBus, self).__init__('lx-device-list-bus', gdb.COMMAND_DATA)
121 super(LxDeviceListClass, self).__init__('lx-device-list-class', gdb.COMMAND_DATA)
139 super(LxDeviceListTree, self).__init__('lx-device-list-tree', gdb.COMMAND_DATA)
154 super(LxDeviceFindByBusName, self).__init__('lx_device_find_by_bus_name')
168 super(LxDeviceFindByClassName, self).__init__('lx_device_find_by_class_name')
/linux/drivers/usb/gadget/function/
H A Du_uvc.h37 * super-speed. They point by default to the uvc_fs_control_cls and
46 * super-speed. They will point to the uvc_[fhs]s_streaming_cls arrays
61 * super-speed. The first element is a configurable control header
76 * Streaming descriptors for full-speed, high-speed and super-speed.
/linux/drivers/android/binder/
H A Dstats.rs67 static binder_command_strings: [*const u8; super::BC_COUNT];
68 static binder_return_strings: [*const u8; super::BR_COUNT];
71 pub(super) fn command_string(i: usize) -> &'static str { in command_string()
80 pub(super) fn return_string(i: usize) -> &'static str { in return_string()
/linux/drivers/md/
H A Ddm-log-writes.c69 * At byte 0 we have our super, followed by the following sequence for
403 struct log_write_super super; in log_super() local
405 super.magic = cpu_to_le64(WRITE_LOG_MAGIC); in log_super()
406 super.version = cpu_to_le64(WRITE_LOG_VERSION); in log_super()
407 super.nr_entries = cpu_to_le64(lc->logged_entries); in log_super()
408 super.sectorsize = cpu_to_le32(lc->sectorsize); in log_super()
410 if (write_metadata(lc, &super, sizeof(super), NULL, 0, in log_super()
412 DMERR("Couldn't write super"); in log_super()
417 * Super sector should be written in-order, otherwise the in log_super()
437 bool super = false; in log_writes_kthread() local
[all …]

12345678910>>...27