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:
parent
9535a69af8
commit
744d6e8290
1 changed files with 12 additions and 40 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue