blob: 1e6a32f732d2ff88d1f5559ce2c70a01d47bcd28 [file] [log] [blame]
Vadim Bendeburyef77f872014-12-10 20:42:58 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 Google Inc.
5 *
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.
9 *
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.
Vadim Bendeburyef77f872014-12-10 20:42:58 -080014 */
15
16#ifndef __SOC_QUALCOMM_IPQ806X_MBN_HEADER_H__
17#define __SOC_QUALCOMM_IPQ806X_MBN_HEADER_H__
18
19#include <types.h>
20
21/* Qualcomm firmware blob header gleaned from util/ipqheader/ipqheader.py */
22
23struct mbn_header {
24 u32 mbn_type;
25 u32 mbn_version;
26 u32 mbn_source;
27 u32 mbn_destination;
28 u32 mbn_total_size;
29 u32 mbn_padding[5];
30};
31
32#endif