Add hardware type for Ampere Hawk server
[ta/hw-detector.git] / src / hw_detector / hw_types / hw_ampere.py
1 # Copyright 2020 Nokia
2 # Copyright 2020 Cachengo
3 # Copyright 2020 ENEA
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 from hw_detector.hw_type import HWType
18
19 class HWFALCON(HWType):
20     def __init__(self):
21         super(HWFALCON, self).__init__()
22         self.matches = {'Board Product' : 'FALCON'}
23         self.hwtype = 'FALCON'
24         self.vendor_name = 'AMPERE'
25         self.productfamily = 'FALCON'
26         self.disk_map = {'os': '/dev/sda',
27                          'osd' : ['/dev/sdb',
28                                   '/dev/sdc',
29                                   '/dev/sdd'
30                                  ]
31                         }
32
33 class HWHAWK(HWType):
34     def __init__(self):
35         super(HWHAWK, self).__init__()
36         self.matches = {'Board Product' : 'HAWK'}
37         self.hwtype = 'HAWK'
38         self.vendor_name = 'AMPERE'
39         self.productfamily = 'FALCON' # Hawk uses same BMC
40         self.disk_map = {'os': '/dev/sda',
41                          'osd' : ['/dev/sdb',
42                                   '/dev/sdc',
43                                   '/dev/sdd'
44                                  ]
45                         }