mirror of
https://github.com/apache/nuttx.git
synced 2026-06-07 17:33:08 +08:00
Bring programmable clock logic from SAMA5 to SAMV7
This commit is contained in:
@@ -113,7 +113,7 @@ endif
|
||||
|
||||
CHIP_ASRCS =
|
||||
CHIP_CSRCS = sam_start.c sam_clockconfig.c sam_irq.c sam_allocateheap.c
|
||||
CHIP_CSRCS += sam_lowputc.c sam_serial.c sam_gpio.c
|
||||
CHIP_CSRCS += sam_lowputc.c sam_serial.c sam_gpio.c sam_pck.c
|
||||
|
||||
# Configuration-dependent SAMV7 files
|
||||
|
||||
|
||||
@@ -163,7 +163,7 @@
|
||||
*/
|
||||
|
||||
#define PMC_USBCLK (1 << 5) /* Bit 5: Enable USB FS Clock */
|
||||
#define PMC_PCK(n) (1 << ((n) + 8)
|
||||
#define PMC_PCK(n) (1 << ((n) + 8))
|
||||
# define PMC_PCK0 (1 << 8) /* Bit 8: Programmable Clock 0 Output Enable */
|
||||
# define PMC_PCK1 (1 << 9) /* Bit 9: Programmable Clock 1 Output Enable */
|
||||
# define PMC_PCK2 (1 << 10) /* Bit 10: Programmable Clock 2 Output Enable */
|
||||
|
||||
@@ -0,0 +1,254 @@
|
||||
/****************************************************************************
|
||||
* arch/arm/src/samv7/sam_pck.c
|
||||
*
|
||||
* Copyright (C) 2015 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name NuttX nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <debug.h>
|
||||
|
||||
#include <arch/board/board.h>
|
||||
|
||||
#include "chip/sam_pinmap.h"
|
||||
|
||||
#include "up_arch.h"
|
||||
#include "sam_gpio.h"
|
||||
|
||||
#include "sam_pck.h"
|
||||
|
||||
/****************************************************************************
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* Function: sam_pck_configure
|
||||
*
|
||||
* Description:
|
||||
* Configure a programmable clock output. The selected PCK is programmed
|
||||
* to the selected frequency using either PLLA or the MCK as the source
|
||||
* clock (depending on the value of the selected frequency). The clock
|
||||
* is initially disabled. You must call sam_pck_enable() to enable the
|
||||
* clock after it has been configured.
|
||||
*
|
||||
* Input Parameters:
|
||||
* pckid - Identifies the programmable clock output (0, 1, or 2)
|
||||
* clocksrc - MCK or SCK. If MCK is selected, the logic will automatically
|
||||
* select the PLLACK clock if it seems like a better choice.
|
||||
* frequency - Defines the desired frequency. The exact frequency may
|
||||
* not be attainable. In this case, frequency is interpreted to be
|
||||
* a not-to-exceed frequency.
|
||||
*
|
||||
* Returned Value:
|
||||
* The actual frequency of the clock output.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
uint32_t sam_pck_configure(enum pckid_e pckid, enum pckid_clksrc_e clksrc,
|
||||
uint32_t frequency)
|
||||
{
|
||||
uint32_t regval;
|
||||
uint32_t clkin;
|
||||
uint32_t actual;
|
||||
uint32_t pres;
|
||||
|
||||
/* Pick a clock source. Several are possible but only MCK, PLLA, the
|
||||
* MAINCK,or SCK are supported here.
|
||||
*/
|
||||
|
||||
switch (clksrc)
|
||||
{
|
||||
case PCKSRC_MCK: /* Source clock = MCK or PLLACK */
|
||||
{
|
||||
/* Pick either the MCK or the PLLACK, whichever will best realize
|
||||
* the target frequency.
|
||||
*/
|
||||
|
||||
DEBUGASSERT(BOARD_MCK_FREQUENCY < BOARD_PLLA_FREQUENCY);
|
||||
|
||||
/* Pick the PLLACK if it seems like a better choice */
|
||||
|
||||
if (frequency <= BOARD_MCK_FREQUENCY ||
|
||||
frequency < BOARD_PLLA_FREQUENCY / 64)
|
||||
{
|
||||
regval = PMC_PCK_CSS_MCK;
|
||||
clkin = BOARD_MCK_FREQUENCY;
|
||||
}
|
||||
else
|
||||
{
|
||||
regval = PMC_PCK_CSS_PLLA;
|
||||
clkin = BOARD_PLLA_FREQUENCY;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case PCKSRC_MAINCK: /* Source clock = MAIN clock */
|
||||
regval = PMC_PCK_CSS_MAIN;
|
||||
clkin = BOARD_MAINOSC_FREQUENCY;
|
||||
break;
|
||||
|
||||
case PCKSRC_SCK: /* Source clock = SCK */
|
||||
regval = PMC_PCK_CSS_SLOW;
|
||||
clkin = BOARD_SLOWCLK_FREQUENCY;
|
||||
break;
|
||||
|
||||
default:
|
||||
dbg("ERROR: Unknown clock source\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Programmable Clock frequency is selected clock freqency divided by PRES + 1 */
|
||||
|
||||
pres = clkin / frequency;
|
||||
if (pres < 1)
|
||||
{
|
||||
pres = 1;
|
||||
}
|
||||
else if (pres > (PMC_PCK_PRES_MASK + 1))
|
||||
{
|
||||
pres = PMC_PCK_PRES_MASK + 1;
|
||||
}
|
||||
|
||||
regval |= PMC_PCK_PRES(pres - 1);
|
||||
actual = frequency / pres;
|
||||
|
||||
/* Disable the programmable clock, configure the PCK output pin, then set
|
||||
* the selected configuration.
|
||||
*/
|
||||
|
||||
switch (pckid)
|
||||
{
|
||||
#ifdef GPIO_PMC_PCK0
|
||||
case PCK0:
|
||||
putreg32(PMC_PCK0, SAM_PMC_SCDR);
|
||||
(void)cam_configgpio(GPIO_PMC_PCK0);
|
||||
putreg32(regval, SAM_PMC_PCK0);
|
||||
break;
|
||||
#endif
|
||||
|
||||
#ifdef GPIO_PMC_PCK1
|
||||
case PCK1:
|
||||
putreg32(PMC_PCK1, SAM_PMC_SCDR);
|
||||
(void)cam_configgpio(GPIO_PMC_PCK1);
|
||||
putreg32(regval, SAM_PMC_PCK1);
|
||||
break;
|
||||
#endif
|
||||
|
||||
#ifdef GPIO_PMC_PCK2
|
||||
case PCK2:
|
||||
putreg32(PMC_PCK2, SAM_PMC_SCDR);
|
||||
(void)cam_configgpio(GPIO_PMC_PCK2);
|
||||
putreg32(regval, SAM_PMC_PCK2);
|
||||
break;
|
||||
#endif
|
||||
|
||||
#ifdef GPIO_PMC_PCK3
|
||||
case PCK3:
|
||||
putreg32(PMC_PCK3, SAM_PMC_SCDR);
|
||||
(void)cam_configgpio(GPIO_PMC_PCK3);
|
||||
putreg32(regval, SAM_PMC_PCK3);
|
||||
break;
|
||||
#endif
|
||||
|
||||
#ifdef GPIO_PMC_PCK4
|
||||
case PCK4:
|
||||
putreg32(PMC_PCK4, SAM_PMC_SCDR);
|
||||
(void)cam_configgpio(GPIO_PMC_PCK4);
|
||||
putreg32(regval, SAM_PMC_PCK4);
|
||||
break;
|
||||
#endif
|
||||
|
||||
#ifdef GPIO_PMC_PCK5
|
||||
case PCK5:
|
||||
putreg32(PMC_PCK5, SAM_PMC_SCDR);
|
||||
(void)cam_configgpio(GPIO_PMC_PCK5);
|
||||
putreg32(regval, SAM_PMC_PCK5);
|
||||
break;
|
||||
#endif
|
||||
|
||||
#ifdef GPIO_PMC_PCK6
|
||||
case PCK6:
|
||||
putreg32(PMC_PCK6, SAM_PMC_SCDR);
|
||||
(void)cam_configgpio(GPIO_PMC_PCK6);
|
||||
putreg32(regval, SAM_PMC_PCK6);
|
||||
break;
|
||||
#endif
|
||||
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* And return the actual frequency */
|
||||
|
||||
return actual;
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* Function: sam_pck_enable
|
||||
*
|
||||
* Description:
|
||||
* Enable or disable a programmable clock output.
|
||||
*
|
||||
* Input Parameters:
|
||||
* pckid - Identifies the programmable clock output (0, 1, or 2)
|
||||
* enable - True: enable the clock output, False: disable the clock output
|
||||
*
|
||||
* Returned Value:
|
||||
* None
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
void sam_pck_enable(enum pckid_e pckid, bool enable)
|
||||
{
|
||||
uintptr_t regaddr;
|
||||
uint32_t regval;
|
||||
|
||||
/* Select the bit in the PMC_SDER or PMC_SCER corresponding to the
|
||||
* programmable clock.
|
||||
*/
|
||||
|
||||
regval = PMC_PCK(pckid);
|
||||
|
||||
/* Select the SDER or SCER */
|
||||
|
||||
regaddr = enable ? SAM_PMC_SCER : SAM_PMC_SCDR;
|
||||
|
||||
/* And do the deead */
|
||||
|
||||
putreg32(regval, regaddr);
|
||||
}
|
||||
@@ -0,0 +1,136 @@
|
||||
/************************************************************************************
|
||||
* arch/arm/src/samv7/sam_pck.h
|
||||
*
|
||||
* Copyright (C) 2015 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in
|
||||
* the documentation and/or other materials provided with the
|
||||
* distribution.
|
||||
* 3. Neither the name NuttX nor the names of its contributors may be
|
||||
* used to endorse or promote products derived from this software
|
||||
* without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARPCKNG IN
|
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __ARCH_ARM_SRC_SAMV7_SAM_PCK_H
|
||||
#define __ARCH_ARM_SRC_SAMV7_SAM_PCK_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
************************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
#include "chip.h"
|
||||
#include "chip/sam_pmc.h"
|
||||
|
||||
/************************************************************************************
|
||||
* Pre-processor Definitions
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Public Types
|
||||
************************************************************************************/
|
||||
/* Identifies the programmable clock */
|
||||
|
||||
enum pckid_e
|
||||
{
|
||||
PCK0 = 0,
|
||||
PCK1,
|
||||
PCK2
|
||||
};
|
||||
|
||||
enum pckid_clksrc_e
|
||||
{
|
||||
PCKSRC_MCK = 0, /* Source clock is the master clock (MCK) or PLLA output (PLLACK) */
|
||||
PCKSRC_MAINCK, /* Source clock is the main clock (probably the XTAL) */
|
||||
PCKSRC_SCK /* Source clock is the slow clock (SCK) */
|
||||
};
|
||||
|
||||
/************************************************************************************
|
||||
* Public Functions
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
|
||||
#undef EXTERN
|
||||
#if defined(__cplusplus)
|
||||
#define EXTERN extern "C"
|
||||
extern "C"
|
||||
{
|
||||
#else
|
||||
#define EXTERN extern
|
||||
#endif
|
||||
|
||||
/****************************************************************************
|
||||
* Function: sam_pck_configure
|
||||
*
|
||||
* Description:
|
||||
* Configure a programmable clock output. The selected PCK is programmed
|
||||
* to the selected frequency using either PLLA or the MCK as the source
|
||||
* clock (depending on the value of the selected frequency). The clock
|
||||
* is initially disabled. You must call sam_pck_enable() to enable the
|
||||
* clock after it has been configured.
|
||||
*
|
||||
* Input Parameters:
|
||||
* pckid - Identifies the programmable clock output (0, 1, or 2)
|
||||
* clocksrc - MCK or SCK. If MCK is selected, the logic will automatically
|
||||
* select the PLLACK clock if it seems like a better choice.
|
||||
* frequency - Defines the desired frequency. The exact frequency may
|
||||
* not be attainable. In this case, frequency is interpreted to be
|
||||
* a not-to-exceed frequency.
|
||||
*
|
||||
* Returned Value:
|
||||
* The actual frequency of the clock output.
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
uint32_t sam_pck_configure(enum pckid_e pckid, enum pckid_clksrc_e clksrc,
|
||||
uint32_t frequency);
|
||||
|
||||
/****************************************************************************
|
||||
* Function: sam_pck_enable
|
||||
*
|
||||
* Description:
|
||||
* Enable or disable a programmable clock output.
|
||||
*
|
||||
* Input Parameters:
|
||||
* pckid - Identifies the programmable clock output (0, 1, or 2)
|
||||
* enable - True: enable the clock output, False: disable the clock output
|
||||
*
|
||||
* Returned Value:
|
||||
* None
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
void sam_pck_enable(enum pckid_e pckid, bool enable);
|
||||
|
||||
#undef EXTERN
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __ASSEMBLY__ */
|
||||
#endif /* __ARCH_ARM_SRC_SAMV7_SAM_PCK_H */
|
||||
|
||||
Reference in New Issue
Block a user