summaryrefslogtreecommitdiffstats
path: root/bsps/arm/atsam/start/power-clock.c
blob: 0ab000cba90a9eaddf51da3c8b80b166d2538f42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * Copyright (c) 2016 embedded brains GmbH.  All rights reserved.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#include <bsp.h>
#include <bsp/power.h>
#include <bsp/irq.h>

#include <libchip/chip.h>

#include <rtems/score/armv7m.h>

void atsam_power_handler_clock_driver(
    const atsam_power_control *control,
    atsam_power_state state
)
{
	volatile ARMV7M_Systick *systick = _ARMV7M_Systick;

	(void) control;

	switch (state) {
		case ATSAM_POWER_ON:
			systick->csr = ARMV7M_SYSTICK_CSR_ENABLE |
			    ARMV7M_SYSTICK_CSR_TICKINT |
			    ARMV7M_SYSTICK_CSR_CLKSOURCE;
			break;
		case ATSAM_POWER_OFF:
			systick->csr = 0;
			break;
		default:
			break;
	}
}