Home
last modified time | relevance | path

Searched refs:root (Results 1 – 25 of 44) sorted by relevance

12

/hal_nxp-3.5.0/imx/devices/MCIMX7D/
Dclock_freq.c44 uint32_t root; in get_gpt_clock_freq() local
50 root = CCM_GetRootMux(CCM, ccmRootGpt3); in get_gpt_clock_freq()
54 root = CCM_GetRootMux(CCM, ccmRootGpt4); in get_gpt_clock_freq()
61 switch (root) { in get_gpt_clock_freq()
83 uint32_t root; in get_ecspi_clock_freq() local
89 root = CCM_GetRootMux(CCM, ccmRootEcspi1); in get_ecspi_clock_freq()
93 root = CCM_GetRootMux(CCM, ccmRootEcspi2); in get_ecspi_clock_freq()
100 switch (root) { in get_ecspi_clock_freq()
122 uint32_t root; in get_flexcan_clock_freq() local
128 root = CCM_GetRootMux(CCM, ccmRootCan1); in get_flexcan_clock_freq()
[all …]
/hal_nxp-3.5.0/imx/devices/MCIMX6X/
Dclock_freq.c43 uint32_t root; in get_epit_clock_freq() local
51 root = ccmRootmuxPerclkClkOsc24m; in get_epit_clock_freq()
60 root = CCM_GetRootMux(CCM, ccmRootPrePeriphClkSel); in get_epit_clock_freq()
64 switch(root) in get_epit_clock_freq()
79 root = ccmRootmuxPeriphClk2OSC24m; in get_epit_clock_freq()
88 root = CCM_GetRootMux(CCM, ccmRootPll3SwClkSel); in get_epit_clock_freq()
92 switch(root) in get_epit_clock_freq()
117 uint32_t root; in get_i2c_clock_freq() local
125 root = ccmRootmuxPerclkClkOsc24m; in get_i2c_clock_freq()
134 root = CCM_GetRootMux(CCM, ccmRootPrePeriphClkSel); in get_i2c_clock_freq()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX9352/drivers/
Dfsl_clock.c41 void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src) in CLOCK_SetRootClockMux() argument
44 ccm_base->CLOCK_ROOT[root].CLOCK_ROOT_CONTROL.RW = in CLOCK_SetRootClockMux()
45 …(ccm_base->CLOCK_ROOT[root].CLOCK_ROOT_CONTROL.RW & ~(CCM_CLOCK_ROOT_MUX_MASK)) | CCM_CLOCK_ROOT_M… in CLOCK_SetRootClockMux()
50 uint32_t CLOCK_GetRootClockMux(clock_root_t root) in CLOCK_GetRootClockMux() argument
52 …return (ccm_base->CLOCK_ROOT[root].CLOCK_ROOT_CONTROL.RW & CCM_CLOCK_ROOT_MUX_MASK) >> CCM_CLOCK_R… in CLOCK_GetRootClockMux()
55 void CLOCK_SetRootClockDiv(clock_root_t root, uint8_t div) in CLOCK_SetRootClockDiv() argument
58 ccm_base->CLOCK_ROOT[root].CLOCK_ROOT_CONTROL.RW = in CLOCK_SetRootClockDiv()
59 (ccm_base->CLOCK_ROOT[root].CLOCK_ROOT_CONTROL.RW & ~CCM_CLOCK_ROOT_DIV_MASK) | in CLOCK_SetRootClockDiv()
65 uint32_t CLOCK_GetRootClockDiv(clock_root_t root) in CLOCK_GetRootClockDiv() argument
67 …return ((ccm_base->CLOCK_ROOT[root].CLOCK_ROOT_CONTROL.RW & CCM_CLOCK_ROOT_DIV_MASK) >> CCM_CLOCK_… in CLOCK_GetRootClockDiv()
[all …]
Dfsl_clock.h16 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uintptr_t)(root) + (off)))) argument
17 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
1172 void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src);
1180 uint32_t CLOCK_GetRootClockMux(clock_root_t root);
1189 static inline clock_name_t CLOCK_GetRootClockSource(clock_root_t root, uint32_t src) in CLOCK_GetRootClockSource() argument
1191 return s_clockSourceName[root][src]; in CLOCK_GetRootClockSource()
1200 void CLOCK_SetRootClockDiv(clock_root_t root, uint8_t div);
1208 uint32_t CLOCK_GetRootClockDiv(clock_root_t root);
1215 void CLOCK_PowerOffRootClock(clock_root_t root);
1222 void CLOCK_PowerOnRootClock(clock_root_t root);
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/middleware/issdk/tools/Serial_To_MQTT/
DCloudBridgeNXPDemo.py249 root.quit()
350 root = Tk() variable
351 root.resizable(0, 0)
352 root.geometry("800x600")
355 Button(root, font=('times', 14, 'bold'), state=DISABLED, text=BANNER_STR, disabledforeground='black…
356 Button(root, image=nxpLogo, bg='white').grid(row=0, column=17, rowspan=2, columnspan=1, sticky=W + …
358 textBox = ScrolledText(root, font=('times', 10), height=30, fg='green', bg='black', state=DISABLED)
361 Label(root, font=('times', 12, 'bold'), height=2, disabledforeground='black', text=USER_NAME_STR, b…
362 userNameEntry = Entry(root, bd=4, font=('times', 10))
365 Label(root, font=('times', 12, 'bold'), disabledforeground='black', text=PASSWORD_STR, bg='lightyel…
[all …]
/hal_nxp-3.5.0/imx/drivers/
Dccm_imx7d.h48 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uint32_t)root + off))) argument
49 #define CCM_REG(root) CCM_REG_OFF(root, 0) argument
50 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4) argument
51 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1165/drivers/
Dfsl_clock.h2018 static inline void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src) in CLOCK_SetRootClockMux() argument
2021 CCM->CLOCK_ROOT[root].CONTROL = in CLOCK_SetRootClockMux()
2022 …(CCM->CLOCK_ROOT[root].CONTROL & ~(CCM_CLOCK_ROOT_CONTROL_MUX_MASK)) | CCM_CLOCK_ROOT_CONTROL_MUX(… in CLOCK_SetRootClockMux()
2026 (void)CCM->CLOCK_ROOT[root].CONTROL; in CLOCK_SetRootClockMux()
2036 static inline uint32_t CLOCK_GetRootClockMux(clock_root_t root) in CLOCK_GetRootClockMux() argument
2038 …return (CCM->CLOCK_ROOT[root].CONTROL & CCM_CLOCK_ROOT_CONTROL_MUX_MASK) >> CCM_CLOCK_ROOT_CONTROL… in CLOCK_GetRootClockMux()
2048 static inline clock_name_t CLOCK_GetRootClockSource(clock_root_t root, uint32_t src) in CLOCK_GetRootClockSource() argument
2050 return s_clockSourceName[root][src]; in CLOCK_GetRootClockSource()
2059 static inline void CLOCK_SetRootClockDiv(clock_root_t root, uint32_t div) in CLOCK_SetRootClockDiv() argument
2062 …CCM->CLOCK_ROOT[root].CONTROL = (CCM->CLOCK_ROOT[root].CONTROL & ~CCM_CLOCK_ROOT_CONTROL_DIV_MASK)… in CLOCK_SetRootClockDiv()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1166/drivers/
Dfsl_clock.h2018 static inline void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src) in CLOCK_SetRootClockMux() argument
2021 CCM->CLOCK_ROOT[root].CONTROL = in CLOCK_SetRootClockMux()
2022 …(CCM->CLOCK_ROOT[root].CONTROL & ~(CCM_CLOCK_ROOT_CONTROL_MUX_MASK)) | CCM_CLOCK_ROOT_CONTROL_MUX(… in CLOCK_SetRootClockMux()
2026 (void)CCM->CLOCK_ROOT[root].CONTROL; in CLOCK_SetRootClockMux()
2036 static inline uint32_t CLOCK_GetRootClockMux(clock_root_t root) in CLOCK_GetRootClockMux() argument
2038 …return (CCM->CLOCK_ROOT[root].CONTROL & CCM_CLOCK_ROOT_CONTROL_MUX_MASK) >> CCM_CLOCK_ROOT_CONTROL… in CLOCK_GetRootClockMux()
2048 static inline clock_name_t CLOCK_GetRootClockSource(clock_root_t root, uint32_t src) in CLOCK_GetRootClockSource() argument
2050 return s_clockSourceName[root][src]; in CLOCK_GetRootClockSource()
2059 static inline void CLOCK_SetRootClockDiv(clock_root_t root, uint32_t div) in CLOCK_SetRootClockDiv() argument
2062 …CCM->CLOCK_ROOT[root].CONTROL = (CCM->CLOCK_ROOT[root].CONTROL & ~CCM_CLOCK_ROOT_CONTROL_DIV_MASK)… in CLOCK_SetRootClockDiv()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1175/drivers/
Dfsl_clock.h2053 static inline void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src) in CLOCK_SetRootClockMux() argument
2056 CCM->CLOCK_ROOT[root].CONTROL = in CLOCK_SetRootClockMux()
2057 …(CCM->CLOCK_ROOT[root].CONTROL & ~(CCM_CLOCK_ROOT_CONTROL_MUX_MASK)) | CCM_CLOCK_ROOT_CONTROL_MUX(… in CLOCK_SetRootClockMux()
2061 (void)CCM->CLOCK_ROOT[root].CONTROL; in CLOCK_SetRootClockMux()
2071 static inline uint32_t CLOCK_GetRootClockMux(clock_root_t root) in CLOCK_GetRootClockMux() argument
2073 …return (CCM->CLOCK_ROOT[root].CONTROL & CCM_CLOCK_ROOT_CONTROL_MUX_MASK) >> CCM_CLOCK_ROOT_CONTROL… in CLOCK_GetRootClockMux()
2083 static inline clock_name_t CLOCK_GetRootClockSource(clock_root_t root, uint32_t src) in CLOCK_GetRootClockSource() argument
2085 return s_clockSourceName[root][src]; in CLOCK_GetRootClockSource()
2094 static inline void CLOCK_SetRootClockDiv(clock_root_t root, uint32_t div) in CLOCK_SetRootClockDiv() argument
2097 …CCM->CLOCK_ROOT[root].CONTROL = (CCM->CLOCK_ROOT[root].CONTROL & ~CCM_CLOCK_ROOT_CONTROL_DIV_MASK)… in CLOCK_SetRootClockDiv()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1176/drivers/
Dfsl_clock.h2053 static inline void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src) in CLOCK_SetRootClockMux() argument
2056 CCM->CLOCK_ROOT[root].CONTROL = in CLOCK_SetRootClockMux()
2057 …(CCM->CLOCK_ROOT[root].CONTROL & ~(CCM_CLOCK_ROOT_CONTROL_MUX_MASK)) | CCM_CLOCK_ROOT_CONTROL_MUX(… in CLOCK_SetRootClockMux()
2061 (void)CCM->CLOCK_ROOT[root].CONTROL; in CLOCK_SetRootClockMux()
2071 static inline uint32_t CLOCK_GetRootClockMux(clock_root_t root) in CLOCK_GetRootClockMux() argument
2073 …return (CCM->CLOCK_ROOT[root].CONTROL & CCM_CLOCK_ROOT_CONTROL_MUX_MASK) >> CCM_CLOCK_ROOT_CONTROL… in CLOCK_GetRootClockMux()
2083 static inline clock_name_t CLOCK_GetRootClockSource(clock_root_t root, uint32_t src) in CLOCK_GetRootClockSource() argument
2085 return s_clockSourceName[root][src]; in CLOCK_GetRootClockSource()
2094 static inline void CLOCK_SetRootClockDiv(clock_root_t root, uint32_t div) in CLOCK_SetRootClockDiv() argument
2097 …CCM->CLOCK_ROOT[root].CONTROL = (CCM->CLOCK_ROOT[root].CONTROL & ~CCM_CLOCK_ROOT_CONTROL_DIV_MASK)… in CLOCK_SetRootClockDiv()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1173/drivers/
Dfsl_clock.h2053 static inline void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src) in CLOCK_SetRootClockMux() argument
2056 CCM->CLOCK_ROOT[root].CONTROL = in CLOCK_SetRootClockMux()
2057 …(CCM->CLOCK_ROOT[root].CONTROL & ~(CCM_CLOCK_ROOT_CONTROL_MUX_MASK)) | CCM_CLOCK_ROOT_CONTROL_MUX(… in CLOCK_SetRootClockMux()
2061 (void)CCM->CLOCK_ROOT[root].CONTROL; in CLOCK_SetRootClockMux()
2071 static inline uint32_t CLOCK_GetRootClockMux(clock_root_t root) in CLOCK_GetRootClockMux() argument
2073 …return (CCM->CLOCK_ROOT[root].CONTROL & CCM_CLOCK_ROOT_CONTROL_MUX_MASK) >> CCM_CLOCK_ROOT_CONTROL… in CLOCK_GetRootClockMux()
2083 static inline clock_name_t CLOCK_GetRootClockSource(clock_root_t root, uint32_t src) in CLOCK_GetRootClockSource() argument
2085 return s_clockSourceName[root][src]; in CLOCK_GetRootClockSource()
2094 static inline void CLOCK_SetRootClockDiv(clock_root_t root, uint32_t div) in CLOCK_SetRootClockDiv() argument
2097 …CCM->CLOCK_ROOT[root].CONTROL = (CCM->CLOCK_ROOT[root].CONTROL & ~CCM_CLOCK_ROOT_CONTROL_DIV_MASK)… in CLOCK_SetRootClockDiv()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1172/drivers/
Dfsl_clock.h2053 static inline void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src) in CLOCK_SetRootClockMux() argument
2056 CCM->CLOCK_ROOT[root].CONTROL = in CLOCK_SetRootClockMux()
2057 …(CCM->CLOCK_ROOT[root].CONTROL & ~(CCM_CLOCK_ROOT_CONTROL_MUX_MASK)) | CCM_CLOCK_ROOT_CONTROL_MUX(… in CLOCK_SetRootClockMux()
2061 (void)CCM->CLOCK_ROOT[root].CONTROL; in CLOCK_SetRootClockMux()
2071 static inline uint32_t CLOCK_GetRootClockMux(clock_root_t root) in CLOCK_GetRootClockMux() argument
2073 …return (CCM->CLOCK_ROOT[root].CONTROL & CCM_CLOCK_ROOT_CONTROL_MUX_MASK) >> CCM_CLOCK_ROOT_CONTROL… in CLOCK_GetRootClockMux()
2083 static inline clock_name_t CLOCK_GetRootClockSource(clock_root_t root, uint32_t src) in CLOCK_GetRootClockSource() argument
2085 return s_clockSourceName[root][src]; in CLOCK_GetRootClockSource()
2094 static inline void CLOCK_SetRootClockDiv(clock_root_t root, uint32_t div) in CLOCK_SetRootClockDiv() argument
2097 …CCM->CLOCK_ROOT[root].CONTROL = (CCM->CLOCK_ROOT[root].CONTROL & ~CCM_CLOCK_ROOT_CONTROL_DIV_MASK)… in CLOCK_SetRootClockDiv()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMXRT1171/drivers/
Dfsl_clock.h2053 static inline void CLOCK_SetRootClockMux(clock_root_t root, uint8_t src) in CLOCK_SetRootClockMux() argument
2056 CCM->CLOCK_ROOT[root].CONTROL = in CLOCK_SetRootClockMux()
2057 …(CCM->CLOCK_ROOT[root].CONTROL & ~(CCM_CLOCK_ROOT_CONTROL_MUX_MASK)) | CCM_CLOCK_ROOT_CONTROL_MUX(… in CLOCK_SetRootClockMux()
2061 (void)CCM->CLOCK_ROOT[root].CONTROL; in CLOCK_SetRootClockMux()
2071 static inline uint32_t CLOCK_GetRootClockMux(clock_root_t root) in CLOCK_GetRootClockMux() argument
2073 …return (CCM->CLOCK_ROOT[root].CONTROL & CCM_CLOCK_ROOT_CONTROL_MUX_MASK) >> CCM_CLOCK_ROOT_CONTROL… in CLOCK_GetRootClockMux()
2083 static inline clock_name_t CLOCK_GetRootClockSource(clock_root_t root, uint32_t src) in CLOCK_GetRootClockSource() argument
2085 return s_clockSourceName[root][src]; in CLOCK_GetRootClockSource()
2094 static inline void CLOCK_SetRootClockDiv(clock_root_t root, uint32_t div) in CLOCK_SetRootClockDiv() argument
2097 …CCM->CLOCK_ROOT[root].CONTROL = (CCM->CLOCK_ROOT[root].CONTROL & ~CCM_CLOCK_ROOT_CONTROL_DIV_MASK)… in CLOCK_SetRootClockDiv()
[all …]
/hal_nxp-3.5.0/mcux/mcux-sdk/middleware/issdk/docs/issdk/SensorFusion/SensorFusion API Reference Manual/
Dnavtree.js397 function gotoNode(o,subIndex,root,hash,relpath) argument
399 var nti = navTreeSubIndices[subIndex][root+hash];
400 o.breadcrumbs = $.extend(true, [], nti ? nti : navTreeSubIndices[subIndex][root]);
401 if (!o.breadcrumbs && root!=NAVTREE[0][1]) { // fallback: show index
412 function navTo(o,root,hash,relpath) argument
417 root = parts[0];
426 var url=root+hash;
429 if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index
431 gotoNode(o,i,root,hash,relpath)
436 gotoNode(o,i,root,hash,relpath);
/hal_nxp-3.5.0/mcux/mcux-sdk/components/css_pkc/doc/html/
Dnavtree.js415 function gotoNode(o,subIndex,root,hash,relpath) argument
417 var nti = navTreeSubIndices[subIndex][root+hash];
418 o.breadcrumbs = $.extend(true, [], nti ? nti : navTreeSubIndices[subIndex][root]);
419 if (!o.breadcrumbs && root!=NAVTREE[0][1]) { // fallback: show index
430 function navTo(o,root,hash,relpath) argument
435 root = parts[0];
444 var url=root+hash;
447 if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index
449 gotoNode(o,i,root,hash,relpath)
454 gotoNode(o,i,root,hash,relpath);
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MM3/drivers/
Dfsl_clock.h169 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uintptr_t)(root) + (off)))) argument
170 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
171 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
172 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MM5/drivers/
Dfsl_clock.h169 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uintptr_t)(root) + (off)))) argument
170 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
171 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
172 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MM1/drivers/
Dfsl_clock.h169 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uintptr_t)(root) + (off)))) argument
170 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
171 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
172 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MM2/drivers/
Dfsl_clock.h169 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uintptr_t)(root) + (off)))) argument
170 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
171 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
172 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MM4/drivers/
Dfsl_clock.h169 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uintptr_t)(root) + (off)))) argument
170 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
171 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
172 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MQ5/drivers/
Dfsl_clock.h167 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uint32_t)(root) + (off)))) argument
168 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
169 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
170 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MN3/drivers/
Dfsl_clock.h176 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uintptr_t)(root) + (off)))) argument
177 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
178 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
179 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
207 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MQ6/drivers/
Dfsl_clock.h167 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uint32_t)(root) + (off)))) argument
168 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
169 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
170 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MQ7/drivers/
Dfsl_clock.h167 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uint32_t)(root) + (off)))) argument
168 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
169 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
170 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument
/hal_nxp-3.5.0/mcux/mcux-sdk/devices/MIMX8MM6/drivers/
Dfsl_clock.h169 #define CCM_REG_OFF(root, off) (*((volatile uint32_t *)((uintptr_t)(root) + (off)))) argument
170 #define CCM_REG(root) CCM_REG_OFF(root, 0U) argument
171 #define CCM_REG_SET(root) CCM_REG_OFF(root, 4U) argument
172 #define CCM_REG_CLR(root) CCM_REG_OFF(root, 8U) argument
200 #define CCM_TUPLE(ccgr, root) ((ccgr) << 16U | (root)) argument

12