|
@@ -0,0 +1,30 @@
|
|
|
+/*
|
|
|
+ * linux/arch/arm/mach-omap2/clock.c
|
|
|
+ *
|
|
|
+ * Copyright (C) 2005-2008 Texas Instruments, Inc.
|
|
|
+ * Copyright (C) 2004-2010 Nokia Corporation
|
|
|
+ *
|
|
|
+ * Contacts:
|
|
|
+ * Richard Woodruff <r-woodruff2@ti.com>
|
|
|
+ * Paul Walmsley
|
|
|
+ *
|
|
|
+ * This program is free software; you can redistribute it and/or modify
|
|
|
+ * it under the terms of the GNU General Public License version 2 as
|
|
|
+ * published by the Free Software Foundation.
|
|
|
+ */
|
|
|
+#undef DEBUG
|
|
|
+
|
|
|
+#include <linux/kernel.h>
|
|
|
+#include <linux/export.h>
|
|
|
+#include <linux/list.h>
|
|
|
+#include <linux/errno.h>
|
|
|
+#include <linux/err.h>
|
|
|
+#include <linux/delay.h>
|
|
|
+#include <linux/clk-provider.h>
|
|
|
+#include <linux/io.h>
|
|
|
+#include <linux/bitops.h>
|
|
|
+
|
|
|
+#include <asm/cpu.h>
|
|
|
+
|
|
|
+
|
|
|
+#include <trace/events/power.h>
|