blob: 0d219f2edd167a8a2418fba14a27003a2ffa71f3 [file] [log] [blame]
Konstantin Porotchkin62a76462018-02-26 15:51:11 +02001/*
2 * Copyright (C) 2018 Marvell International Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 * https://spdx.org/licenses
6 */
7
8/* Address map types for Marvell address translation unit drivers */
9
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000010#ifndef ADDR_MAP_H
11#define ADDR_MAP_H
Konstantin Porotchkin62a76462018-02-26 15:51:11 +020012
13#include <stdint.h>
14
15struct addr_map_win {
16 uint64_t base_addr;
17 uint64_t win_size;
18 uint32_t target_id;
19};
20
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000021#endif /* ADDR_MAP_H */