Searched refs:hw (Results 1 - 17 of 17) sorted by relevance

/seL4-refos-master/libs/libplatsupport/src/plat/am335x/
H A Dtimer.c44 dmt->hw->tclr = 0;
45 dmt->hw->cfg = TIOCP_CFG_SOFTRESET;
46 while (dmt->hw->cfg & TIOCP_CFG_SOFTRESET);
47 dmt->hw->tier = TIER_OVERFLOWENABLE;
59 dmt->hw->tclr = dmt->hw->tclr & ~TCLR_STARTTIMER;
68 dmt->hw->tclr = dmt->hw->tclr | TCLR_STARTTIMER;
77 dmt->hw->tclr = 0; /* stop */
94 dmt->hw
[all...]
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/am335x/
H A Dtimer.c44 dmt->hw->tclr = 0;
45 dmt->hw->cfg = TIOCP_CFG_SOFTRESET;
46 while (dmt->hw->cfg & TIOCP_CFG_SOFTRESET);
47 dmt->hw->tier = TIER_OVERFLOWENABLE;
59 dmt->hw->tclr = dmt->hw->tclr & ~TCLR_STARTTIMER;
68 dmt->hw->tclr = dmt->hw->tclr | TCLR_STARTTIMER;
77 dmt->hw->tclr = 0; /* stop */
94 dmt->hw
[all...]
/seL4-refos-master/libs/libplatsupport/src/plat/rockpro64/
H A Dtimer.c32 printf("load_count0 >> 0x%08x\n", rk->hw->load_count0);
33 printf("load_count1 >> 0x%08x\n", rk->hw->load_count1);
34 printf("current_cnt_lowbits >> 0x%08x\n", rk->hw->current_value0);
35 printf("current_cnt_highbits >> 0x%08x\n", rk->hw->current_value1);
36 printf("load_count2 >> 0x%08x\n", rk->hw->load_count2);
37 printf("load_count3 >> 0x%08x\n", rk->hw->load_count3);
38 printf("interrupt_status >> 0x%08x\n", rk->hw->interrupt_status);
39 printf("control_register >> 0x%08x\n", rk->hw->control_register);
48 rk->hw->control_register = 0;
57 uint32_t val1 = rk->hw
[all...]
/seL4-refos-master/projects/util_libs/libplatsupport/src/plat/rockpro64/
H A Dtimer.c32 printf("load_count0 >> 0x%08x\n", rk->hw->load_count0);
33 printf("load_count1 >> 0x%08x\n", rk->hw->load_count1);
34 printf("current_cnt_lowbits >> 0x%08x\n", rk->hw->current_value0);
35 printf("current_cnt_highbits >> 0x%08x\n", rk->hw->current_value1);
36 printf("load_count2 >> 0x%08x\n", rk->hw->load_count2);
37 printf("load_count3 >> 0x%08x\n", rk->hw->load_count3);
38 printf("interrupt_status >> 0x%08x\n", rk->hw->interrupt_status);
39 printf("control_register >> 0x%08x\n", rk->hw->control_register);
48 rk->hw->control_register = 0;
57 uint32_t val1 = rk->hw
[all...]
/seL4-refos-master/projects/util_libs/libethdrivers/src/plat/am335x/
H A Dcpsw_beaglebone.c53 #include <ethdrivers/plat/hw/soc_AM335x.h>
54 #include <ethdrivers/plat/hw/hw_control_AM335x.h>
55 #include <ethdrivers/plat/hw/hw_types.h>
57 #include <ethdrivers/plat/hw/hw_cm_per.h>
H A Dedma_beaglebone.c53 #include <ethdrivers/plat/hw/hw_control_AM335x.h>
54 #include <ethdrivers/plat/hw/soc_AM335x.h>
55 #include <ethdrivers/plat/hw/hw_cm_per.h>
56 #include <ethdrivers/plat/hw/hw_types.h>
H A Dmdio.c56 #include <ethdrivers/plat/hw/hw_types.h>
57 #include <ethdrivers/plat/hw/hw_mdio.h>
H A Dphy.c55 #include <ethdrivers/plat/hw/hw_types.h>
H A Dcpsw.c57 #include <ethdrivers/plat/hw/hw_types.h>
H A Dedma.c47 #include <ethdrivers/plat/hw/hw_types.h>
/seL4-refos-master/libs/libmuslc/src/string/
H A Dmemmem.c7 uint16_t nw = n[0]<<8 | n[1], hw = h[0]<<8 | h[1]; local
8 for (h++, k--; k; k--, hw = hw<<8 | *++h)
9 if (hw == nw) return (char *)h-1;
16 uint32_t hw = h[0]<<24 | h[1]<<16 | h[2]<<8; local
17 for (h+=2, k-=2; k; k--, hw = (hw|*++h)<<8)
18 if (hw == nw) return (char *)h-2;
25 uint32_t hw = h[0]<<24 | h[1]<<16 | h[2]<<8 | h[3]; local
26 for (h+=3, k-=3; k; k--, hw
[all...]
H A Dstrstr.c6 uint16_t nw = n[0]<<8 | n[1], hw = h[0]<<8 | h[1]; local
7 for (h++; *h && hw != nw; hw = hw<<8 | *++h);
14 uint32_t hw = h[0]<<24 | h[1]<<16 | h[2]<<8; local
15 for (h+=2; *h && hw != nw; hw = (hw|*++h)<<8);
22 uint32_t hw = h[0]<<24 | h[1]<<16 | h[2]<<8 | h[3]; local
23 for (h+=3; *h && hw !
[all...]
/seL4-refos-master/libs/libplatsupport/plat_include/am335x/platsupport/plat/
H A Dtimer.h69 volatile struct dmt_map *hw; member in struct:dmt
/seL4-refos-master/projects/util_libs/libplatsupport/plat_include/am335x/platsupport/plat/
H A Dtimer.h69 volatile struct dmt_map *hw; member in struct:dmt
/seL4-refos-master/libs/libplatsupport/plat_include/rockpro64/platsupport/plat/
H A Dtimer.h51 volatile struct rk_map *hw; member in struct:__anon5
/seL4-refos-master/projects/util_libs/libplatsupport/plat_include/rockpro64/platsupport/plat/
H A Dtimer.h51 volatile struct rk_map *hw; member in struct:__anon11
/seL4-refos-master/projects/util_libs/libethdrivers/src/plat/am335x/cpsw/
H A Dcpswif.h57 #include <ethdrivers/plat/hw/soc_AM335x.h>

Completed in 105 milliseconds