cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

xtalk-bridge.h (437B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * SGI PCI Xtalk Bridge
      4 */
      5
      6#ifndef PLATFORM_DATA_XTALK_BRIDGE_H
      7#define PLATFORM_DATA_XTALK_BRIDGE_H
      8
      9#include <asm/sn/types.h>
     10
     11struct xtalk_bridge_platform_data {
     12	struct resource	mem;
     13	struct resource io;
     14	unsigned long bridge_addr;
     15	unsigned long intr_addr;
     16	unsigned long mem_offset;
     17	unsigned long io_offset;
     18	nasid_t	nasid;
     19	int	masterwid;
     20};
     21
     22#endif /* PLATFORM_DATA_XTALK_BRIDGE_H */