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

csb726.h (555B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 *  Support for Cogent CSB726
      4 *
      5 *  Copyright (c) 2008 Dmitry Baryshkov
      6 */
      7#ifndef CSB726_H
      8#define CSB726_H
      9
     10#include "irqs.h" /* PXA_GPIO_TO_IRQ */
     11
     12#define CSB726_GPIO_IRQ_LAN	52
     13#define CSB726_GPIO_IRQ_SM501	53
     14#define CSB726_GPIO_MMC_DETECT	100
     15#define CSB726_GPIO_MMC_RO	101
     16
     17#define CSB726_FLASH_SIZE	(64 * 1024 * 1024)
     18#define CSB726_FLASH_uMON	(8 * 1024 * 1024)
     19
     20#define CSB726_IRQ_LAN		PXA_GPIO_TO_IRQ(CSB726_GPIO_IRQ_LAN)
     21#define CSB726_IRQ_SM501	PXA_GPIO_TO_IRQ(CSB726_GPIO_IRQ_SM501)
     22
     23#endif
     24