clk-tegra30.c (ecd740c6f2f092b90b95fa35f757973589eaaca2) clk-tegra30.c (306a7f9139318a28063282a15b9f9ebacf09c9b9)
1/*
2 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT

--- 8 unchanged lines hidden (view full) ---

17#include <linux/io.h>
18#include <linux/delay.h>
19#include <linux/clk.h>
20#include <linux/clk-provider.h>
21#include <linux/clkdev.h>
22#include <linux/of.h>
23#include <linux/of_address.h>
24#include <linux/clk/tegra.h>
1/*
2 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT

--- 8 unchanged lines hidden (view full) ---

17#include <linux/io.h>
18#include <linux/delay.h>
19#include <linux/clk.h>
20#include <linux/clk-provider.h>
21#include <linux/clkdev.h>
22#include <linux/of.h>
23#include <linux/of_address.h>
24#include <linux/clk/tegra.h>
25#include <linux/tegra-powergate.h>
25
26#include <soc/tegra/powergate.h>
27
26#include <dt-bindings/clock/tegra30-car.h>
28#include <dt-bindings/clock/tegra30-car.h>
29
27#include "clk.h"
28#include "clk-id.h"
29
30#define OSC_CTRL 0x50
31#define OSC_CTRL_OSC_FREQ_MASK (0xF<<28)
32#define OSC_CTRL_OSC_FREQ_13MHZ (0X0<<28)
33#define OSC_CTRL_OSC_FREQ_19_2MHZ (0X4<<28)
34#define OSC_CTRL_OSC_FREQ_12MHZ (0X8<<28)

--- 1415 unchanged lines hidden ---
30#include "clk.h"
31#include "clk-id.h"
32
33#define OSC_CTRL 0x50
34#define OSC_CTRL_OSC_FREQ_MASK (0xF<<28)
35#define OSC_CTRL_OSC_FREQ_13MHZ (0X0<<28)
36#define OSC_CTRL_OSC_FREQ_19_2MHZ (0X4<<28)
37#define OSC_CTRL_OSC_FREQ_12MHZ (0X8<<28)

--- 1415 unchanged lines hidden ---