dts: bindings: clock: stm32n6: fix apb prescalers as constants

Errata sheet ES0620 indicates that STM32N6 APB prescalers cannot be
modified.
Fixes the value of all APB prescalers to 1 (default value).

Signed-off-by: Guillaume Gautier <guillaume.gautier-ext@st.com>
This commit is contained in:
Guillaume Gautier 2025-04-11 14:59:38 +02:00 committed by Benjamin Cabé
commit 744d6e8290

View file

@ -62,63 +62,35 @@ properties:
apb1-prescaler:
type: int
required: true
default: 1
const: 1
description: |
CPU domain APB1 prescaler
enum:
- 1
- 2
- 4
- 8
- 16
- 32
- 64
- 128
Fixed to 1 as APB prescalers cannot be modified (See Errata sheet ES0620 §2.2.1)
apb2-prescaler:
type: int
required: true
default: 1
const: 1
description: |
CPU domain APB2 prescaler
enum:
- 1
- 2
- 4
- 8
- 16
- 32
- 64
- 128
Fixed to 1 as APB prescalers cannot be modified (See Errata sheet ES0620 §2.2.1)
apb4-prescaler:
type: int
required: true
default: 1
const: 1
description: |
CPU domain APB4 prescaler
enum:
- 1
- 2
- 4
- 8
- 16
- 32
- 64
- 128
Fixed to 1 as APB prescalers cannot be modified (See Errata sheet ES0620 §2.2.1)
apb5-prescaler:
type: int
required: true
default: 1
const: 1
description: |
CPU domain APB5 prescaler
enum:
- 1
- 2
- 4
- 8
- 16
- 32
- 64
- 128
Fixed to 1 as APB prescalers cannot be modified (See Errata sheet ES0620 §2.2.1)
timg-prescaler:
type: int