upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
520 B
29 lines
520 B
12 years ago
|
/*
|
||
|
* Copyright (C) 2012 Samsung Electronics
|
||
|
* Rajeshwari Shinde <rajeshwari.s@samsung.com>
|
||
|
*
|
||
11 years ago
|
* SPDX-License-Identifier: GPL-2.0+
|
||
12 years ago
|
*/
|
||
|
|
||
|
|
||
|
#ifndef __SOUND_ARCH_H__
|
||
|
#define __SOUND_ARCH_H__
|
||
|
|
||
|
/* I2S values */
|
||
|
#define I2S_PLL_CLK 192000000
|
||
|
#define I2S_SAMPLING_RATE 48000
|
||
|
#define I2S_BITS_PER_SAMPLE 16
|
||
|
#define I2S_CHANNELS 2
|
||
|
#define I2S_RFS 256
|
||
|
#define I2S_BFS 32
|
||
|
|
||
|
/* I2C values */
|
||
|
#define AUDIO_I2C_BUS 1
|
||
|
#define AUDIO_I2C_REG 0x1a
|
||
|
|
||
|
/* Audio Codec */
|
||
|
#define AUDIO_CODEC "wm8994"
|
||
|
|
||
|
#define AUDIO_COMPAT 1
|
||
|
#endif
|