blob: b1accb8a01349d6e8bdbd46e94dad250f38faf5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* ELPIDA LPDDR2 timings.
*
* Copyright (C) 2010 Texas Instruments
*
* Aneesh V <aneesh@ti.com>
* Santosh Shilimkar <santosh.shilimkar@ti.com>
*
* 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.
*/
#ifndef _LPDDR2_ELPIDA_H
#define _LPDDR2_ELPIDA_H
extern const struct lpddr2_timings lpddr2_elpida_timings_200_mhz;
extern const struct lpddr2_timings lpddr2_elpida_timings_333_mhz;
extern const struct lpddr2_timings lpddr2_elpida_timings_400_mhz;
extern const struct lpddr2_min_tck lpddr2_elpida_min_tck;
extern struct lpddr2_device_info lpddr2_elpida_2G_S4_dev;
#endif
|