Blame view

kernel/linux-imx6_3.14.28/arch/arm/mach-mvebu/mvebu-soc-id.h 755 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  /*
   * Marvell EBU SoC ID and revision definitions.
   *
   * Copyright (C) 2014 Marvell Semiconductor
   *
   * This file is licensed under the terms of the GNU General Public
   * License version 2.  This program is licensed "as is" without any
   * warranty of any kind, whether express or implied.
   */
  
  #ifndef __LINUX_MVEBU_SOC_ID_H
  #define __LINUX_MVEBU_SOC_ID_H
  
  /* Armada XP ID */
  #define MV78230_DEV_ID	    0x7823
  #define MV78260_DEV_ID	    0x7826
  #define MV78460_DEV_ID	    0x7846
  
  /* Armada XP Revision */
  #define MV78XX0_A0_REV	    0x1
  #define MV78XX0_B0_REV	    0x2
  
  #ifdef CONFIG_ARCH_MVEBU
  int mvebu_get_soc_id(u32 *dev, u32 *rev);
  #else
  static inline int mvebu_get_soc_id(u32 *dev, u32 *rev)
  {
  	return -1;
  }
  #endif
  
  #endif /* __LINUX_MVEBU_SOC_ID_H */