blob: 83facc97b5da53be2f3ac32b5fec1a669c828980 [file] [log] [blame]
Shawn Guo12bb34402012-12-04 22:55:14 +08001/*
2 * Copyright (C) 2012 Freescale Semiconductor, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/cpuidle.h>
10#include <linux/module.h>
11#include <asm/cpuidle.h>
12
13#include "cpuidle.h"
14
15static struct cpuidle_driver imx6q_cpuidle_driver = {
16 .name = "imx6q_cpuidle",
17 .owner = THIS_MODULE,
18 .en_core_tk_irqen = 1,
19 .states[0] = ARM_CPUIDLE_WFI_STATE,
20 .state_count = 1,
21};
22
23int __init imx6q_cpuidle_init(void)
24{
25 return imx_cpuidle_init(&imx6q_cpuidle_driver);
26}