/arch/arm/mach-omap2/ |
D | prminst44xx.c | 58 u32 omap4_prminst_read_inst_reg(u8 part, s16 inst, u16 idx) in omap4_prminst_read_inst_reg() argument 60 BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS || in omap4_prminst_read_inst_reg() 61 part == OMAP4430_INVALID_PRCM_PARTITION || in omap4_prminst_read_inst_reg() 62 !_prm_bases[part].va); in omap4_prminst_read_inst_reg() 63 return readl_relaxed(_prm_bases[part].va + inst + idx); in omap4_prminst_read_inst_reg() 67 void omap4_prminst_write_inst_reg(u32 val, u8 part, s16 inst, u16 idx) in omap4_prminst_write_inst_reg() argument 69 BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS || in omap4_prminst_write_inst_reg() 70 part == OMAP4430_INVALID_PRCM_PARTITION || in omap4_prminst_write_inst_reg() 71 !_prm_bases[part].va); in omap4_prminst_write_inst_reg() 72 writel_relaxed(val, _prm_bases[part].va + inst + idx); in omap4_prminst_write_inst_reg() [all …]
|
D | cminst44xx.c | 74 static u32 omap4_cminst_read_inst_reg(u8 part, u16 inst, u16 idx); 85 static u32 _clkctrl_idlest(u8 part, u16 inst, u16 clkctrl_offs) in _clkctrl_idlest() argument 87 u32 v = omap4_cminst_read_inst_reg(part, inst, clkctrl_offs); in _clkctrl_idlest() 102 static bool _is_module_ready(u8 part, u16 inst, u16 clkctrl_offs) in _is_module_ready() argument 106 v = _clkctrl_idlest(part, inst, clkctrl_offs); in _is_module_ready() 113 static u32 omap4_cminst_read_inst_reg(u8 part, u16 inst, u16 idx) in omap4_cminst_read_inst_reg() argument 115 BUG_ON(part >= OMAP4_MAX_PRCM_PARTITIONS || in omap4_cminst_read_inst_reg() 116 part == OMAP4430_INVALID_PRCM_PARTITION || in omap4_cminst_read_inst_reg() 117 !_cm_bases[part].va); in omap4_cminst_read_inst_reg() 118 return readl_relaxed(_cm_bases[part].va + inst + idx); in omap4_cminst_read_inst_reg() [all …]
|
D | cm.h | 57 int (*wait_module_ready)(u8 part, s16 prcm_mod, u16 idlest_reg, 59 int (*wait_module_idle)(u8 part, s16 prcm_mod, u16 idlest_reg, 61 void (*module_enable)(u8 mode, u8 part, u16 inst, u16 clkctrl_offs); 62 void (*module_disable)(u8 part, u16 inst, u16 clkctrl_offs); 63 u32 (*xlate_clkctrl)(u8 part, u16 inst, u16 clkctrl_offs); 68 int omap_cm_wait_module_ready(u8 part, s16 prcm_mod, u16 idlest_reg, 70 int omap_cm_wait_module_idle(u8 part, s16 prcm_mod, u16 idlest_reg, 72 int omap_cm_module_enable(u8 mode, u8 part, u16 inst, u16 clkctrl_offs); 73 int omap_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs); 74 u32 omap_cm_xlate_clkctrl(u8 part, u16 inst, u16 clkctrl_offs);
|
D | prm.h | 138 bool (*was_any_context_lost_old)(u8 part, s16 inst, u16 idx); 139 void (*clear_context_loss_flags_old)(u8 part, s16 inst, u16 idx); 141 int (*assert_hardreset)(u8 shift, u8 part, s16 prm_mod, u16 offset); 142 int (*deassert_hardreset)(u8 shift, u8 st_shift, u8 part, s16 prm_mod, 144 int (*is_hardreset_asserted)(u8 shift, u8 part, s16 prm_mod, 155 int omap_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset); 156 int omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod, 158 int omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset); 160 extern bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx); 161 extern void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx);
|
D | prminst44xx.h | 20 extern u32 omap4_prminst_read_inst_reg(u8 part, s16 inst, u16 idx); 21 extern void omap4_prminst_write_inst_reg(u32 val, u8 part, s16 inst, u16 idx); 22 extern u32 omap4_prminst_rmw_inst_reg_bits(u32 mask, u32 bits, u8 part, 27 extern int omap4_prminst_is_hardreset_asserted(u8 shift, u8 part, s16 inst, 29 extern int omap4_prminst_assert_hardreset(u8 shift, u8 part, s16 inst, 31 int omap4_prminst_deassert_hardreset(u8 shift, u8 st_shift, u8 part,
|
D | cm_common.c | 94 int omap_cm_wait_module_ready(u8 part, s16 prcm_mod, u16 idlest_reg, in omap_cm_wait_module_ready() argument 103 return cm_ll_data->wait_module_ready(part, prcm_mod, idlest_reg, in omap_cm_wait_module_ready() 120 int omap_cm_wait_module_idle(u8 part, s16 prcm_mod, u16 idlest_reg, in omap_cm_wait_module_idle() argument 129 return cm_ll_data->wait_module_idle(part, prcm_mod, idlest_reg, in omap_cm_wait_module_idle() 144 int omap_cm_module_enable(u8 mode, u8 part, u16 inst, u16 clkctrl_offs) in omap_cm_module_enable() argument 152 cm_ll_data->module_enable(mode, part, inst, clkctrl_offs); in omap_cm_module_enable() 166 int omap_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs) in omap_cm_module_disable() argument 174 cm_ll_data->module_disable(part, inst, clkctrl_offs); in omap_cm_module_disable() 178 u32 omap_cm_xlate_clkctrl(u8 part, u16 inst, u16 clkctrl_offs) in omap_cm_xlate_clkctrl() argument 185 return cm_ll_data->xlate_clkctrl(part, inst, clkctrl_offs); in omap_cm_xlate_clkctrl()
|
D | prm_common.c | 394 bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx) in prm_was_any_context_lost_old() argument 399 ret = prm_ll_data->was_any_context_lost_old(part, inst, idx); in prm_was_any_context_lost_old() 418 void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx) in prm_clear_context_loss_flags_old() argument 421 prm_ll_data->clear_context_loss_flags_old(part, inst, idx); in prm_clear_context_loss_flags_old() 436 int omap_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset) in omap_prm_assert_hardreset() argument 444 return prm_ll_data->assert_hardreset(shift, part, prm_mod, offset); in omap_prm_assert_hardreset() 458 int omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod, in omap_prm_deassert_hardreset() argument 467 return prm_ll_data->deassert_hardreset(shift, st_shift, part, prm_mod, in omap_prm_deassert_hardreset() 480 int omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset) in omap_prm_is_hardreset_asserted() argument 488 return prm_ll_data->is_hardreset_asserted(shift, part, prm_mod, offset); in omap_prm_is_hardreset_asserted()
|
D | cm33xx.c | 229 static int am33xx_cm_wait_module_ready(u8 part, s16 inst, u16 clkctrl_offs, in am33xx_cm_wait_module_ready() argument 252 static int am33xx_cm_wait_module_idle(u8 part, s16 inst, u16 clkctrl_offs, in am33xx_cm_wait_module_idle() argument 273 static void am33xx_cm_module_enable(u8 mode, u8 part, u16 inst, in am33xx_cm_module_enable() argument 292 static void am33xx_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs) in am33xx_cm_module_disable() argument 347 static u32 am33xx_cm_xlate_clkctrl(u8 part, u16 inst, u16 offset) in am33xx_cm_xlate_clkctrl() argument
|
D | prm2xxx_3xxx.h | 100 int omap2_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset); 101 int omap2_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, 103 int omap2_prm_deassert_hardreset(u8 rst_shift, u8 st_shift, u8 part,
|
D | prm2xxx_3xxx.c | 33 int omap2_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset) in omap2_prm_is_hardreset_asserted() argument 53 int omap2_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset) in omap2_prm_assert_hardreset() argument 82 int omap2_prm_deassert_hardreset(u8 rst_shift, u8 st_shift, u8 part, in omap2_prm_deassert_hardreset() argument
|
D | cm2xxx.h | 54 int omap2xxx_cm_wait_module_ready(u8 part, s16 prcm_mod, u16 idlest_id,
|
D | prm33xx.c | 67 static int am33xx_prm_is_hardreset_asserted(u8 shift, u8 part, s16 inst, in am33xx_prm_is_hardreset_asserted() argument 93 static int am33xx_prm_assert_hardreset(u8 shift, u8 part, s16 inst, in am33xx_prm_assert_hardreset() argument 122 static int am33xx_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, in am33xx_prm_deassert_hardreset() argument
|
D | prm44xx.c | 404 static bool omap44xx_prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx) in omap44xx_prm_was_any_context_lost_old() argument 406 return (omap4_prminst_read_inst_reg(part, inst, idx)) ? 1 : 0; in omap44xx_prm_was_any_context_lost_old() 419 static void omap44xx_prm_clear_context_loss_flags_old(u8 part, s16 inst, in omap44xx_prm_clear_context_loss_flags_old() argument 422 omap4_prminst_write_inst_reg(0xffffffff, part, inst, idx); in omap44xx_prm_clear_context_loss_flags_old()
|
/arch/powerpc/kernel/ |
D | nvram_64.c | 180 int nvram_write_os_partition(struct nvram_os_partition *part, in nvram_write_os_partition() argument 189 if (part->index == -1) in nvram_write_os_partition() 192 if (length > part->size) in nvram_write_os_partition() 193 length = part->size; in nvram_write_os_partition() 198 tmp_index = part->index; in nvram_write_os_partition() 219 int nvram_read_partition(struct nvram_os_partition *part, char *buff, in nvram_read_partition() argument 227 if (part->index == -1) in nvram_read_partition() 230 if (length > part->size) in nvram_read_partition() 231 length = part->size; in nvram_read_partition() 233 tmp_index = part->index; in nvram_read_partition() [all …]
|
/arch/x86/platform/uv/ |
D | bios_uv.c | 85 union partition_info_u part; in uv_bios_get_sn_info() local 92 part.val = v0; in uv_bios_get_sn_info() 94 *uvtype = part.hub_version; in uv_bios_get_sn_info() 96 *partid = part.partition_id; in uv_bios_get_sn_info() 98 *coher = part.coherence_id; in uv_bios_get_sn_info() 100 *region = part.region_size; in uv_bios_get_sn_info()
|
/arch/powerpc/include/asm/ |
D | nvram.h | 78 extern int __init nvram_init_os_partition(struct nvram_os_partition *part); 84 extern int nvram_read_partition(struct nvram_os_partition *part, char *buff, 89 extern int nvram_write_os_partition(struct nvram_os_partition *part,
|
/arch/arm64/boot/dts/rockchip/ |
D | rk3399pro.dtsi | 10 /* Default to enabled since AP talk to NPU part over pcie */ 15 /* Default to enabled since AP talk to NPU part over pcie */
|
/arch/alpha/lib/ |
D | ev6-divide.S | 177 nop # E : as part of the cmovne 183 nop # E : as part of the cmovne 188 nop # E : as part of the cmovne 239 nop # E : as part of the cmov 256 nop # E : U L L U : as part of the cmov 259 nop # E : as part of the cmov
|
/arch/powerpc/kernel/ptrace/ |
D | ptrace32.c | 116 u32 part; in compat_arch_ptrace() local 124 part = 1; /* want the 2nd half of the register (right-most). */ in compat_arch_ptrace() 126 part = 0; /* want the 1st half of the register (left-most). */ in compat_arch_ptrace() 146 reg32bits = ((u32*)&tmp)[part]; in compat_arch_ptrace()
|
/arch/sparc/ |
D | Kbuild | 3 # core part of the sparc kernel
|
/arch/arm/lib/ |
D | div64.S | 59 @ Align divisor with upper part of dividend. 114 @ The top part of remainder became zero. If carry is set 116 @ Otherwise, if lower part is also null then we are done. 121 @ We still have remainer bits in the low part. Bring them up.
|
/arch/arm/include/asm/hardware/ |
D | cache-l2x0.h | 160 void l2x0_pmu_register(void __iomem *base, u32 part); 164 static inline void l2x0_pmu_register(void __iomem *base, u32 part) {} in l2x0_pmu_register() argument
|
/arch/powerpc/platforms/powermac/ |
D | setup.c | 349 void note_bootable_part(dev_t dev, int part, int goodness); 356 void __ref note_bootable_part(dev_t dev, int part, int goodness) in note_bootable_part() argument 369 ROOT_DEV = dev + part; in note_bootable_part()
|
/arch/x86/lib/ |
D | hweight.S | 75 movl %edx, %eax # second part of input
|
/arch/arm64/boot/dts/allwinner/ |
D | sun50i-h6-orangepi-lite2.dts | 58 /* There's the BT part of the AP6255 connected to that UART */
|