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

cuboot.h (404B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _PPC_BOOT_CUBOOT_H_
      3#define _PPC_BOOT_CUBOOT_H_
      4
      5void cuboot_init(unsigned long r4, unsigned long r5,
      6		 unsigned long r6, unsigned long r7,
      7		 unsigned long end_of_ram);
      8
      9#define CUBOOT_INIT() \
     10	do { \
     11		memcpy(&bd, (bd_t *)r3, sizeof(bd)); \
     12		cuboot_init(r4, r5, r6, r7, bd.bi_memstart + bd.bi_memsize); \
     13	} while (0)
     14
     15#endif /* _PPC_BOOT_CUBOOT_H_ */