Lines Matching refs:ptp_qoriq

10 	struct ptp_qoriq *ptp_qoriq = data;  in ptp_qoriq_fiper1_lpbk_get()  local
11 struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; in ptp_qoriq_fiper1_lpbk_get()
14 ctrl = ptp_qoriq->read(&regs->ctrl_regs->tmr_ctrl); in ptp_qoriq_fiper1_lpbk_get()
22 struct ptp_qoriq *ptp_qoriq = data; in ptp_qoriq_fiper1_lpbk_set() local
23 struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; in ptp_qoriq_fiper1_lpbk_set()
26 ctrl = ptp_qoriq->read(&regs->ctrl_regs->tmr_ctrl); in ptp_qoriq_fiper1_lpbk_set()
32 ptp_qoriq->write(&regs->ctrl_regs->tmr_ctrl, ctrl); in ptp_qoriq_fiper1_lpbk_set()
41 struct ptp_qoriq *ptp_qoriq = data; in ptp_qoriq_fiper2_lpbk_get() local
42 struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; in ptp_qoriq_fiper2_lpbk_get()
45 ctrl = ptp_qoriq->read(&regs->ctrl_regs->tmr_ctrl); in ptp_qoriq_fiper2_lpbk_get()
53 struct ptp_qoriq *ptp_qoriq = data; in ptp_qoriq_fiper2_lpbk_set() local
54 struct ptp_qoriq_registers *regs = &ptp_qoriq->regs; in ptp_qoriq_fiper2_lpbk_set()
57 ctrl = ptp_qoriq->read(&regs->ctrl_regs->tmr_ctrl); in ptp_qoriq_fiper2_lpbk_set()
63 ptp_qoriq->write(&regs->ctrl_regs->tmr_ctrl, ctrl); in ptp_qoriq_fiper2_lpbk_set()
70 void ptp_qoriq_create_debugfs(struct ptp_qoriq *ptp_qoriq) in ptp_qoriq_create_debugfs() argument
74 root = debugfs_create_dir(dev_name(ptp_qoriq->dev), NULL); in ptp_qoriq_create_debugfs()
80 ptp_qoriq->debugfs_root = root; in ptp_qoriq_create_debugfs()
83 ptp_qoriq, &ptp_qoriq_fiper1_fops)) in ptp_qoriq_create_debugfs()
86 ptp_qoriq, &ptp_qoriq_fiper2_fops)) in ptp_qoriq_create_debugfs()
92 ptp_qoriq->debugfs_root = NULL; in ptp_qoriq_create_debugfs()
94 dev_err(ptp_qoriq->dev, "failed to initialize debugfs\n"); in ptp_qoriq_create_debugfs()
97 void ptp_qoriq_remove_debugfs(struct ptp_qoriq *ptp_qoriq) in ptp_qoriq_remove_debugfs() argument
99 debugfs_remove_recursive(ptp_qoriq->debugfs_root); in ptp_qoriq_remove_debugfs()
100 ptp_qoriq->debugfs_root = NULL; in ptp_qoriq_remove_debugfs()