| /linux/arch/arm/mach-omap2/ |
| H A D | omap_hwmod.c | 218 int (*reset)(struct omap_hwmod *oh); 231 void (*enable_module)(struct omap_hwmod *oh); 232 int (*disable_module)(struct omap_hwmod *oh); 233 int (*wait_target_ready)(struct omap_hwmod *oh); 234 int (*assert_hardreset)(struct omap_hwmod *oh, 236 int (*deassert_hardreset)(struct omap_hwmod *oh, 238 int (*is_hardreset_asserted)(struct omap_hwmod *oh, 240 int (*init_clkdm)(struct omap_hwmod *oh); 241 void (*update_context_lost)(struct omap_hwmod *oh); 242 int (*get_context_lost)(struct omap_hwmod *oh); [all …]
|
| H A D | display.c | 278 struct omap_hwmod *oh; in dispc_disable_outputs() local 280 oh = omap_hwmod_lookup("dss_dispc"); in dispc_disable_outputs() 281 if (!oh) { in dispc_disable_outputs() 286 if (!oh->dev_attr) { in dispc_disable_outputs() 291 da = (struct omap_dss_dispc_dev_attr *)oh->dev_attr; in dispc_disable_outputs() 294 v = omap_hwmod_read(oh, DISPC_CONTROL); in dispc_disable_outputs() 300 v = omap_hwmod_read(oh, DISPC_CONTROL2); in dispc_disable_outputs() 306 v = omap_hwmod_read(oh, DISPC_CONTROL3); in dispc_disable_outputs() 338 omap_hwmod_write(irq_mask, oh, DISPC_IRQSTATUS); in dispc_disable_outputs() 341 v = omap_hwmod_read(oh, DISPC_CONTROL); in dispc_disable_outputs() [all …]
|
| H A D | wd_timer.c | 31 int omap2_wd_timer_disable(struct omap_hwmod *oh) in omap2_wd_timer_disable() argument 35 if (!oh) { in omap2_wd_timer_disable() 40 base = omap_hwmod_get_mpu_rt_va(oh); in omap2_wd_timer_disable() 43 oh->name, __func__); in omap2_wd_timer_disable() 77 int omap2_wd_timer_reset(struct omap_hwmod *oh) in omap2_wd_timer_reset() argument 82 omap_hwmod_softreset(oh); in omap2_wd_timer_reset() 85 omap_test_timeout((omap_hwmod_read(oh, in omap2_wd_timer_reset() 86 oh->class->sysc->syss_offs) in omap2_wd_timer_reset() 90 if (oh->class->sysc->srst_udelay) in omap2_wd_timer_reset() 91 udelay(oh->class->sysc->srst_udelay); in omap2_wd_timer_reset() [all …]
|
| H A D | i2c.c | 36 int omap_i2c_reset(struct omap_hwmod *oh) in omap_i2c_reset() argument 48 v = omap_hwmod_read(oh, i2c_con); in omap_i2c_reset() 50 omap_hwmod_write(v, oh, i2c_con); in omap_i2c_reset() 53 omap_hwmod_softreset(oh); in omap_i2c_reset() 56 v = omap_hwmod_read(oh, i2c_con); in omap_i2c_reset() 58 omap_hwmod_write(v, oh, i2c_con); in omap_i2c_reset() 61 omap_test_timeout((omap_hwmod_read(oh, in omap_i2c_reset() 62 oh->class->sysc->syss_offs) in omap_i2c_reset() 68 __func__, oh->name, MAX_MODULE_SOFTRESET_WAIT); in omap_i2c_reset() 71 oh->name, c); in omap_i2c_reset()
|
| H A D | hdq1w.c | 37 int omap_hdq1w_reset(struct omap_hwmod *oh) in omap_hdq1w_reset() argument 43 omap_hwmod_softreset(oh); in omap_hdq1w_reset() 46 v = omap_hwmod_read(oh, HDQ_CTRL_STATUS_OFFSET); in omap_hdq1w_reset() 48 omap_hwmod_write(v, oh, HDQ_CTRL_STATUS_OFFSET); in omap_hdq1w_reset() 51 omap_test_timeout((omap_hwmod_read(oh, in omap_hdq1w_reset() 52 oh->class->sysc->syss_offs) in omap_hdq1w_reset() 58 __func__, oh->name, MAX_MODULE_SOFTRESET_WAIT); in omap_hdq1w_reset() 61 oh->name, c); in omap_hdq1w_reset()
|
| H A D | msdi.c | 45 int omap_msdi_reset(struct omap_hwmod *oh) in omap_msdi_reset() argument 51 omap_hwmod_softreset(oh); in omap_msdi_reset() 56 omap_hwmod_write(v, oh, MSDI_CON_OFFSET); in omap_msdi_reset() 59 omap_test_timeout((omap_hwmod_read(oh, oh->class->sysc->syss_offs) in omap_msdi_reset() 65 __func__, oh->name, MAX_MODULE_SOFTRESET_WAIT); in omap_msdi_reset() 68 oh->name, c); in omap_msdi_reset() 72 omap_hwmod_write(v, oh, MSDI_CON_OFFSET); in omap_msdi_reset()
|
| H A D | omap_hwmod.h | 526 int (*pre_shutdown)(struct omap_hwmod *oh); 527 int (*reset)(struct omap_hwmod *oh); 528 void (*lock)(struct omap_hwmod *oh); 529 void (*unlock)(struct omap_hwmod *oh); 615 int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data), 618 int omap_hwmod_parse_module_range(struct omap_hwmod *oh, 629 int omap_hwmod_enable(struct omap_hwmod *oh); 630 int omap_hwmod_idle(struct omap_hwmod *oh); 631 int omap_hwmod_shutdown(struct omap_hwmod *oh); 633 int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name); [all …]
|
| H A D | omap_device.c | 112 struct omap_hwmod *oh) in _add_hwmod_clocks_clkdev() argument 116 _add_clkdev(od, "fck", oh->main_clk); in _add_hwmod_clocks_clkdev() 118 for (i = 0; i < oh->opt_clks_cnt; i++) in _add_hwmod_clocks_clkdev() 119 _add_clkdev(od, oh->opt_clks[i].role, oh->opt_clks[i].clk); in _add_hwmod_clocks_clkdev() 135 struct omap_hwmod *oh; in omap_device_build_from_dt() local 167 oh = omap_hwmod_lookup(oh_name); in omap_device_build_from_dt() 168 if (!oh) { in omap_device_build_from_dt() 174 hwmods[i] = oh; in omap_device_build_from_dt() 175 if (oh->flags & HWMOD_INIT_NO_IDLE) in omap_device_build_from_dt()
|
| H A D | sr_device.c | 152 static int __init sr_dev_init(struct omap_hwmod *oh, void *user) in sr_dev_init() argument 156 sr_dev_attr = (struct omap_smartreflex_dev_attr *)oh->dev_attr; in sr_dev_init() 159 __func__, oh->name); in sr_dev_init() 163 return sr_init_by_name(oh->name, sr_dev_attr->sensor_voltdm_name); in sr_dev_init() 166 static int __init sr_dev_init(struct omap_hwmod *oh, void *user) in sr_dev_init() argument
|
| H A D | wd_timer.h | 11 extern int omap2_wd_timer_disable(struct omap_hwmod *oh); 12 extern int omap2_wd_timer_reset(struct omap_hwmod *oh);
|
| H A D | mmc.h | 12 int omap_msdi_reset(struct omap_hwmod *oh); 14 static inline int omap_msdi_reset(struct omap_hwmod *oh) in omap_msdi_reset() argument
|
| H A D | clockdomain.h | 213 int clkdm_hwmod_enable(struct clockdomain *clkdm, struct omap_hwmod *oh); 214 int clkdm_hwmod_disable(struct clockdomain *clkdm, struct omap_hwmod *oh);
|
| H A D | i2c.h | 13 int omap_i2c_reset(struct omap_hwmod *oh);
|
| H A D | hdq1w.h | 21 extern int omap_hdq1w_reset(struct omap_hwmod *oh);
|
| /linux/include/uapi/linux/ |
| H A D | coda.h | 312 struct coda_out_hdr oh; member 328 struct coda_out_hdr oh; member 378 struct coda_out_hdr oh; member 391 struct coda_out_hdr oh; member 432 struct coda_out_hdr oh; member 449 struct coda_out_hdr oh; member 501 struct coda_out_hdr oh; member 538 struct coda_out_hdr oh; member 561 struct coda_out_hdr oh; member 574 struct coda_out_hdr oh; member [all …]
|
| /linux/arch/arm64/boot/dts/freescale/ |
| H A D | qoriq-fman3-0.dtsi | 33 compatible = "fsl,fman-v3-port-oh"; 39 compatible = "fsl,fman-v3-port-oh"; 45 compatible = "fsl,fman-v3-port-oh"; 51 compatible = "fsl,fman-v3-port-oh"; 57 compatible = "fsl,fman-v3-port-oh"; 63 compatible = "fsl,fman-v3-port-oh";
|
| /linux/arch/powerpc/boot/dts/fsl/ |
| H A D | qoriq-fman-1.dtsi | 55 compatible = "fsl,fman-v2-port-oh"; 61 compatible = "fsl,fman-v2-port-oh"; 67 compatible = "fsl,fman-v2-port-oh"; 73 compatible = "fsl,fman-v2-port-oh"; 79 compatible = "fsl,fman-v2-port-oh"; 86 compatible = "fsl,fman-v2-port-oh"; 93 compatible = "fsl,fman-v2-port-oh";
|
| H A D | qoriq-fman-0.dtsi | 55 compatible = "fsl,fman-v2-port-oh"; 61 compatible = "fsl,fman-v2-port-oh"; 67 compatible = "fsl,fman-v2-port-oh"; 73 compatible = "fsl,fman-v2-port-oh"; 79 compatible = "fsl,fman-v2-port-oh"; 86 compatible = "fsl,fman-v2-port-oh"; 93 compatible = "fsl,fman-v2-port-oh";
|
| H A D | qoriq-fman3-0.dtsi | 55 compatible = "fsl,fman-v3-port-oh"; 61 compatible = "fsl,fman-v3-port-oh"; 67 compatible = "fsl,fman-v3-port-oh"; 73 compatible = "fsl,fman-v3-port-oh"; 79 compatible = "fsl,fman-v3-port-oh"; 85 compatible = "fsl,fman-v3-port-oh";
|
| H A D | qoriq-fman3-1.dtsi | 55 compatible = "fsl,fman-v3-port-oh"; 61 compatible = "fsl,fman-v3-port-oh"; 67 compatible = "fsl,fman-v3-port-oh"; 73 compatible = "fsl,fman-v3-port-oh"; 79 compatible = "fsl,fman-v3-port-oh"; 85 compatible = "fsl,fman-v3-port-oh";
|
| H A D | qoriq-fman3l-0.dtsi | 55 compatible = "fsl,fman-v3-port-oh"; 61 compatible = "fsl,fman-v3-port-oh"; 67 compatible = "fsl,fman-v3-port-oh"; 73 compatible = "fsl,fman-v3-port-oh";
|
| /linux/net/ipv6/netfilter/ |
| H A D | ip6t_hbh.c | 47 const struct ipv6_opt_hdr *oh; in hbh_mt6() local 69 oh = skb_header_pointer(skb, ptr, sizeof(_optsh), &_optsh); in hbh_mt6() 70 if (oh == NULL) { in hbh_mt6() 75 hdrlen = ipv6_optlen(oh); in hbh_mt6() 81 pr_debug("IPv6 OPTS LEN %u %u ", hdrlen, oh->hdrlen); in hbh_mt6()
|
| /linux/fs/ocfs2/ |
| H A D | acl.c | 269 struct ocfs2_lock_holder oh; in ocfs2_iop_set_acl() local 272 had_lock = ocfs2_inode_lock_tracker(inode, &bh, 1, &oh); in ocfs2_iop_set_acl() 289 ocfs2_inode_unlock_tracker(inode, 1, &oh, had_lock); in ocfs2_iop_set_acl() 300 struct ocfs2_lock_holder oh; in ocfs2_iop_get_acl() local 309 had_lock = ocfs2_inode_lock_tracker(inode, &di_bh, 0, &oh); in ocfs2_iop_get_acl() 317 ocfs2_inode_unlock_tracker(inode, 0, &oh, had_lock); in ocfs2_iop_get_acl()
|
| /linux/tools/perf/tests/ |
| H A D | bp_signal.c | 71 siginfo_t *oh __maybe_unused, in sig_handler_2() 83 siginfo_t *oh __maybe_unused, in sig_handler()
|
| /linux/tools/objtool/include/objtool/ |
| H A D | elf.h | 516 u32 ol, oh, idx = sec->idx; 521 oh = (offset >> 16) >> 16; 523 __jhash_mix(ol, oh, idx); 363 u32 ol, oh, idx = sec->idx; sec_offset_hash() local
|