Home
last modified time | relevance | path

Searched full:tsc (Results 1 – 25 of 57) sorted by relevance

123

/Zephyr-latest/doc/project/
Dworking_groups.rst1 TSC Working Groups
7 The TSC, at its discretion, may establish working groups or subcommittees to
18 consultation with the TSC.
24 - All TSC members are eligible to join a working group as members, part of
25 the responsibilities being a TSC member.
41 responsible for leading meetings and representing the working group to the TSC.
63 - The elected Chair (and/or Co-Chair) is submitted to the TSC for confirmation.
64 - The TSC decides to accept the outcome or requests a new voting.
70 to the TSC.
73 shall raise the issue with the TSC or the relevant committee (Safety and
[all …]
Dtsc.rst1 Technical Steering Committee (TSC)
4 TSC Member Role
7 The TSC role and its responsibilities is defined in the `Zephyr project charter`_.
12 A TSC member plays a pivotal role in shaping the technical direction of the
13 Zephyr Project. TSC members work collaboratively with other TSC members,
17 By fulfilling the rights and responsibilities below, TSC members contribute to
30 Exercise voting rights on important matters discussed within the TSC,
47 TSC members are expected to fulfill the following responsibilities, though it is
93 Appointed TSC Members
98 - Appointed TSC members have no term limits besides the term of their employment
[all …]
Dproject_roles.rst3 TSC Project Roles
9 TSC projects generally will involve *Maintainers*, *Collaborators*, and
12 **Maintainer**: lead Collaborators on an area identified by the TSC (e.g.
14 area’s representative on the TSC as needed. Maintainers may become voting
15 members of the TSC under the guidelines stated in the project Charter.
18 May become a Maintainer with approval of existing TSC voting members.
137 the TSC
147 Contributors nor Collaborators must be approved by the TSC before they can
159 may be requested by the TSC to retire from the role they are elected.
160 * Such a request needs to be raised as a motion in the TSC and be
[all …]
Dcode_flow.rst17 collaboration branch requires a justification and TSC approval. Collaboration branches
20 Zephyr, the introduction of fixes and new features, if approved by the TSC,
47 this timeline requires TSC approval.
Dproposals.rst22 and must be vetted and discussed in the TSC before a target milestone is set.
40 If not though, an owner will be assigned after evaluation by the TSC.
45 - The TSC discusses new ``feature-request`` items regularly and triages them.
Ddev_env_and_tools.rst43 and a decision by the TSC or the Security working group. To summarize the above,
58 should belong to. A project maintainers or TSC member monitoring the inflow of
101 TSC and Working Groups
103 overall system works need to be reviewed by the TSC or the responsible Working
269 Note: Issue priorities are generally set or changed during the bug-triage or TSC
372 * - :guilabel:`TSC`
373 - TSC stands for Technical Steering Committee. The issue is to be discussed in the
374 following `TSC meeting`_ if time permits.
376 ….. _`TSC meeting`: https://github.com/zephyrproject-rtos/zephyr/wiki/Technical-Steering-Committee-…
/Zephyr-latest/drivers/timer/
DKconfig.x8639 bool "Local APIC timer using TSC deadline mode"
44 Extremely simple timer driver based the local APIC TSC
51 choice for any x86 device with invariant TSC and TSC
55 bool "Local APIC timer using TSC time source"
61 If your CPU supports invariant TSC but no TSC deadline capability
62 then this choice will rely on the TSC as time source and the
64 You must know the ratio of the TSC frequency to the local APIC
87 int "TSC to local APIC timer frequency multiplier (N)"
91 int "TSC to local APIC timer frequency divisor (M)"
/Zephyr-latest/drivers/input/
DKconfig.tsc_keys5 bool "STM32 TSC touch library"
10 Enable support for STM32 TSC touch library.
13 int "STM32 TSC touch buffer size in words"
17 Size of the ring buffer for the STM32 TSC touch library. The size of this
18 buffer together with the sampling-interval property in the tsc-keys
Dinput_tsc_keys.c44 const TSC_TypeDef *tsc; member
88 sys_set_bits((mem_addr_t)&config->tsc->ICR, TSC_ICR_EOAIC | TSC_ICR_MCEIC); in stm32_tsc_start()
91 sys_set_bits((mem_addr_t)&config->tsc->IER, TSC_IER_EOAIE | TSC_IER_MCEIE); in stm32_tsc_start()
98 sys_set_bit((mem_addr_t)&config->tsc->CR, TSC_CR_START_Pos); in stm32_tsc_start()
120 if (sys_test_bit((mem_addr_t)&config->tsc->ISR, TSC_ISR_MCEF_Pos)) { in stm32_tsc_handle_incoming_data()
122 sys_set_bit((mem_addr_t)&config->tsc->ICR, TSC_ICR_MCEIC_Pos); in stm32_tsc_handle_incoming_data()
124 LOG_HEXDUMP_DBG(config->tsc, sizeof(TSC_TypeDef), "TSC Registers"); in stm32_tsc_handle_incoming_data()
128 if (sys_test_bit((mem_addr_t)&config->tsc->ISR, TSC_ISR_EOAF_Pos)) { in stm32_tsc_handle_incoming_data()
130 sys_set_bit((mem_addr_t)&config->tsc->ICR, TSC_ICR_EOAIC_Pos); in stm32_tsc_handle_incoming_data()
137 if (config->tsc->IOGCSR & group_bit) { in stm32_tsc_handle_incoming_data()
[all …]
/Zephyr-latest/dts/bindings/input/
Dtsc-keys.yaml5 Input driver for STM32 Tocuh Sensing Controller (TSC).
7 This node is a st,stm32-tsc grandchild node and applies filters and
9 st,stm32-tsc. For more information see drivers/misc/st,stm32-tsc.yaml
15 &tsc {
16 compatible = "st,stm32-tsc";
21 compatible = "tsc-keys";
30 compatible: "tsc-keys"
Dst,stm32-tsc.yaml4 description: STM32 Tocuh Sensing Controller (TSC) driver
6 compatible: "st,stm32-tsc"
92 description: STM32 TSC group configuration
/Zephyr-latest/tests/drivers/input/tsc_keys/
Dtestcase.yaml3 tags: drivers input stm32 tsc
4 filter: dt_compat_enabled("st,stm32-tsc")
5 depends_on: tsc
/Zephyr-latest/tests/drivers/input/tsc_keys/src/
Dtest_stm32_tsc.c8 * @brief Verify STM32 TSC peripheral is configured properly and can be started
16 * -# Get a TSC device
23 * -# The device tree values are correctly mapped to the TSC registers
41 #error "Could not find an st,stm32-tsc compatible device in DT"
52 zassert_true(device_is_ready(dev), "STM32 TSC device is not ready"); in ZTEST()
57 TSC_TypeDef *tsc = (TSC_TypeDef *)DT_REG_ADDR(TSC_NODE); in ZTEST() local
59 volatile const uint32_t *tsc_cr = &tsc->CR; in ZTEST()
131 /* check TSC enable bit (bit 0) */ in ZTEST()
137 TSC_TypeDef *tsc = (TSC_TypeDef *)DT_REG_ADDR(TSC_NODE); in ZTEST() local
138 volatile const uint32_t *tsc_iohcr = &tsc->IOHCR; in ZTEST()
[all …]
/Zephyr-latest/.github/workflows/
Ddo_not_merge.yml15 contains(github.event.*.labels.*.name, 'TSC') ||
19 echo "Pull request is labeled as 'DNM', 'TSC', 'Architecture Review' or 'dev-review'."
/Zephyr-latest/doc/contribute/
Dexternal.rst163 and accepted by the Technical Steering Committee (TSC) and, in some cases, by
173 detail, so that you are informed of the criteria used by the TSC and board in
178 TSC to assess the merit of the request. Optionally you can also create a Pull
181 #. Wait for feedback from the TSC, respond to any additional questions added as
184 If, after consideration by the TSC, the conclusion is that integrating external
192 #. The TSC chair will forward the link to the GitHub issue created during the
203 TSC approval or identify other approaches that can resolve the
206 #. On approval of the Zephyr TSC and governing board the submission process is
250 The TSC must approve every Pull Request that introduces a new external tooling
252 proposed addition by the TSC representatives.
[all …]
/Zephyr-latest/.github/ISSUE_TEMPLATE/
D006_nomination.md12 The [TSC Project Roles] defines the main roles for the Zephyr Project, including
41 [TSC Project Roles]: <https://docs.zephyrproject.org/latest/project/project_roles.html>
/Zephyr-latest/boards/st/stm32u083c_dk/
Dstm32u083c_dk.yaml18 - tsc
Dstm32u083c_dk.dts12 #include <zephyr/dt-bindings/input/stm32-tsc-defines.h>
129 &tsc {
154 compatible = "tsc-keys";
/Zephyr-latest/boards/up-bridge-the-gap/up_squared/
DKconfig.defconfig12 # TSC on this board is 1.5936 GHz, HPET and APIC are 19.2 MHz
/Zephyr-latest/boards/intel/ehl/
DKconfig.defconfig21 # TSC on this board is 1.9 GHz, HPET and APIC are 19.2 MHz
/Zephyr-latest/dts/bindings/gpio/
Dnxp,i2c-tsc-fpc.yaml5 compatible: "nxp,i2c-tsc-fpc"
/Zephyr-latest/tests/kernel/timer/timer_monotonic/
Dtestcase.yaml9 kernel.timer.monotonic.apic.tsc:
/Zephyr-latest/boards/up-bridge-the-gap/up_squared_pro_7000/
DKconfig.defconfig12 # TSC on this board is 1.9 GHz, HPET and APIC are 19.2 MHz
/Zephyr-latest/boards/intel/adl/
DKconfig.defconfig10 # TSC on this board is 1.9 GHz, HPET and APIC are 19.2 MHz
/Zephyr-latest/boards/intel/rpl/
DKconfig.defconfig11 # TSC on this board is 1.9 GHz, HPET and APIC are 19.2 MHz

123