aboutsummaryrefslogtreecommitdiff
path: root/tcl/chip/atmel/at91/pmc.tcl
blob: 0f997cad547520938c14fe865f5e5da92aabe227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# SPDX-License-Identifier: GPL-2.0-or-later

if [info exists AT91C_MAINOSC_FREQ] {
    # user set this... let it be.
} {
    # 18.432mhz is a common thing...
    set AT91C_MAINOSC_FREQ 18432000
}
global AT91C_MAINOSC_FREQ

if [info exists AT91C_SLOWOSC_FREQ] {
    # user set this... let it be.
} {
    # 32khz is the norm
    set AT91C_SLOWOSC_FREQ 32768
}
global AT91C_SLOWOSC_FREQ