ipq8064: add DRAM initialization code
[coreboot.git] / src / soc / qualcomm / ipq806x / mbn_header.h
blob6b27c71cf2c0907d7c06a977f29cbb0375fd42f2
1 /*
2 * This file is part of the coreboot project.
4 * Copyright 2014 Google Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #ifndef __SOC_QUALCOMM_IPQ806X_MBN_HEADER_H__
21 #define __SOC_QUALCOMM_IPQ806X_MBN_HEADER_H__
23 #include <types.h>
25 /* Qualcomm firmware blob header gleaned from util/ipqheader/ipqheader.py */
27 struct mbn_header {
28 u32 mbn_type;
29 u32 mbn_version;
30 u32 mbn_source;
31 u32 mbn_destination;
32 u32 mbn_total_size;
33 u32 mbn_padding[5];
36 #endif