00001 --**************************************************************
00002 --* *
00003 --* The source code for the ATLAS BCM "AAA" FPGA is made *
00004 --* available via the GNU General Public License (GPL) *
00005 --* unless otherwise stated below. *
00006 --* *
00007 --* In case of problems/questions/bug reports etc. please *
00008 --* contact michael.niegl@cern.ch *
00009 --* *
00010 --**************************************************************
00011
00012 --**************************************************************
00013 --* *
00014 --* $Source: /local/reps/bcmfpga/bcm_aaa/bcm_aaa/eth/ipmac.vhd,v $
00015 --* $Revision: 2.2.2.3 $ *
00016 --* $Name: dev $ *
00017 --* $Author: mniegl $ *
00018 --* $Date: 2008/11/03 17:57:46 $ *
00019
00020
00021 --* *
00022 --**************************************************************
00023
00024 --*****************************************************************--
00025 --
00026 -- IP & MAC addresses
00027 --
00028 --*****************************************************************--
00029
00030
00031 library ieee;
00032
00033 use ieee.std_logic_1164.all;
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 package ipmac is
00048
00049 --*******************************************************************************
00050 --* MAC
00051 --*******************************************************************************
00052
00053
00054 constant testbeam_1 : (47 downto 0) := x"00_0A_35_01_9B_2C";
00055
00056 constant testbeam_2 : (47 downto 0) := x"00_0A_35_01_9B_2D";
00057
00058 constant fhwn_1 : (47 downto 0) := x"00_0A_35_01_9B_9A";
00059
00060 constant fhwn_2 : (47 downto 0) := x"00_0A_35_01_9B_9B";
00061
00062 constant cern1_1 : (47 downto 0) := x"00_0A_35_01_77_3B";
00063
00064 constant cern1_2 : (47 downto 0) := x"00_0A_35_01_77_3A";
00065
00066 constant cern2_1 : (47 downto 0) := x"00_0A_35_01_78_82";
00067
00068 constant cern2_2 : (47 downto 0) := x"00_0A_35_01_78_83";
00069
00070 constant ljubljana_1 : (47 downto 0) := x"00_0A_35_01_9B_68";
00071
00072 constant ljubljana_2 : (47 downto 0) := x"00_0A_35_01_9B_69";
00073
00074 constant toronto_1 : (47 downto 0) := x"00_0A_35_01_C1_67";
00075
00076 constant toronto_2 : (47 downto 0) := x"00_0A_35_01_C1_67";
00077
00078 constant MAC_mbpmn : (47 downto 0) := x"00_1B_63_96_D8_04";
00079
00080 constant MAC_pcatlbcmscs : (47 downto 0) := x"00_04_23_CA_07_92";
00081
00082 constant MAC_sbcbcmtcc01 : (47 downto 0) := x"00_40_9E_00_B1_B5";
00083
00084 constant MAC_pcbcmscr01 : (47 downto 0) := x"00_1D_92_DB_39_D2";
00085
00086 --*******************************************************************************
00087 --* IP
00088 --*******************************************************************************
00089
00090
00091 constant ip_testbeam_1 : (31 downto 0) := x"0A_91_51_FB";
00092
00093 constant ip_cern1_1 : (31 downto 0) := x"0A_91_51_F9";
00094
00095 constant ip_cern2_1 : (31 downto 0) := x"0A_91_51_F8";
00096
00097 constant ip_fhwn_1 : (31 downto 0) := x"0A_91_51_F7";
00098
00099 constant ip_ljubljana_1 : (31 downto 0) := x"0A_91_51_F6";
00100
00101 constant ip_toronto_1 : (31 downto 0) := x"0A_91_51_F5";
00102
00103 constant ip_pcatlbcmscs : (31 downto 0) := x"0A_91_51_FC";
00104
00105 constant ip_sbcbcmtcc01 : (31 downto 0) := x"0A_91_51_FD";
00106
00107 constant ip_pcbcmscr01 : (31 downto 0) := x"0A_90_2B_10";
00108
00109
00110 end ipmac;