mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
63405360fc
Rename the RATE_IN_343X clksel_rate.rate flag to be RATE_IN_3XXX, to reflect that these rates are valid on all OMAP3 platforms, not just 343X. Also rename the RATE_IN_OMAP3430ES2 clksel_rate.rate flag to be RATE_IN_OMAP3430ES2PLUS, to reflect that these flags are valid on all OMAP3 platforms after 3430ES2. This patch should not result in any functional changes. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Richard Woodruff <r-woodruff2@ti.com> Cc: Rajendra Nayak <rnayak@ti.com> Cc: Ranjith Lohithakshan <ranjithl@ti.com>
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
/*
|
|
* linux/arch/arm/mach-omap2/clock_common_data.c
|
|
*
|
|
* Copyright (C) 2005-2009 Texas Instruments, Inc.
|
|
* Copyright (C) 2004-2009 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.
|
|
*
|
|
* This file contains clock data that is common to both the OMAP2xxx and
|
|
* OMAP3xxx clock definition files.
|
|
*/
|
|
|
|
#include "clock.h"
|
|
|
|
/* clksel_rate data common to 24xx/343x */
|
|
const struct clksel_rate gpt_32k_rates[] = {
|
|
{ .div = 1, .val = 0, .flags = RATE_IN_24XX | RATE_IN_3XXX },
|
|
{ .div = 0 }
|
|
};
|
|
|
|
const struct clksel_rate gpt_sys_rates[] = {
|
|
{ .div = 1, .val = 1, .flags = RATE_IN_24XX | RATE_IN_3XXX },
|
|
{ .div = 0 }
|
|
};
|
|
|
|
const struct clksel_rate gfx_l3_rates[] = {
|
|
{ .div = 1, .val = 1, .flags = RATE_IN_24XX | RATE_IN_3XXX },
|
|
{ .div = 2, .val = 2, .flags = RATE_IN_24XX | RATE_IN_3XXX },
|
|
{ .div = 3, .val = 3, .flags = RATE_IN_243X | RATE_IN_3XXX },
|
|
{ .div = 4, .val = 4, .flags = RATE_IN_243X | RATE_IN_3XXX },
|
|
{ .div = 0 }
|
|
};
|
|
|