addr_map.h 376 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2018 Marvell International Ltd.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. * https://spdx.org/licenses
  6. */
  7. /* Address map types for Marvell address translation unit drivers */
  8. #ifndef ADDR_MAP_H
  9. #define ADDR_MAP_H
  10. #include <stdint.h>
  11. struct addr_map_win {
  12. uint64_t base_addr;
  13. uint64_t win_size;
  14. uint32_t target_id;
  15. };
  16. #endif /* ADDR_MAP_H */