luwen-if 0.4.4

Generic interface to Tenstorrent ai accelerators, abstracting the details of communication
Documentation
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
// SPDX-FileCopyrightText: © 2023 Tenstorrent Inc.
// SPDX-License-Identifier: Apache-2.0

use std::{convert::Infallible, fmt};

use thiserror::Error;

use crate::error::ArcReadyError;

#[derive(Clone, Debug)]
pub enum EthernetInitError {
    FwCorrupted,
    NotTrained,
}

impl fmt::Display for EthernetInitError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            EthernetInitError::FwCorrupted => f.write_str("Ethernet firmware is corrupted"),
            EthernetInitError::NotTrained => f.write_str("Ethernet is not trained"),
        }
    }
}

#[derive(Clone, Debug)]
pub enum EthernetPartialInitError {
    FwOverwritten,
}

impl fmt::Display for EthernetPartialInitError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            EthernetPartialInitError::FwOverwritten => {
                f.write_str("Ethernet firmware version has an invalid format and is assumed to have been overwritten")
            }
        }
    }
}

#[derive(Clone, Debug)]
pub enum ArcInitError {
    FwCorrupted,
    NoAccess,
    WaitingForInit(ArcReadyError),
    FwVersionTooOld { version: Option<u32>, required: u32 },
    Hung,
}

impl fmt::Display for ArcInitError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            ArcInitError::NoAccess => f.write_str("Could not access ARC"),
            ArcInitError::FwCorrupted => f.write_str("ARC firmware is corrupted"),
            ArcInitError::WaitingForInit(err) => {
                write!(f, "ARC is waiting for initialization; {err}")
            }
            ArcInitError::FwVersionTooOld { version, required } => {
                let version = if let Some(version) = version {
                    format!("{version:x}")
                } else {
                    "<unknown version>".to_string()
                };
                write!(f, "ARC FW is older than the minimum supported version; {version} < {required:x}")
            }
            ArcInitError::Hung => f.write_str("ARC is hung"),
        }
    }
}

#[derive(Copy, Clone, Debug)]
pub enum DramChannelStatus {
    TrainingNone,
    TrainingFail,
    TrainingPass,
    TrainingSkip,
    PhyOff,
    ReadEye,
    BistEye,
    CaDebug,
}

impl ToString for DramChannelStatus {
    fn to_string(&self) -> String {
        match self {
            DramChannelStatus::TrainingNone => "in pre-training",
            DramChannelStatus::TrainingFail => "failed to train",
            DramChannelStatus::TrainingPass => "passed training",
            DramChannelStatus::TrainingSkip => "skipped training",
            DramChannelStatus::PhyOff => "phy is off",
            DramChannelStatus::ReadEye => "read eye",
            DramChannelStatus::BistEye => "bist eye",
            DramChannelStatus::CaDebug => "ca debug",
        }
        .to_string()
    }
}

impl TryFrom<u8> for DramChannelStatus {
    type Error = ();

    fn try_from(value: u8) -> Result<Self, ()> {
        match value {
            0 => Ok(DramChannelStatus::TrainingNone),
            1 => Ok(DramChannelStatus::TrainingFail),
            2 => Ok(DramChannelStatus::TrainingPass),
            3 => Ok(DramChannelStatus::TrainingSkip),
            4 => Ok(DramChannelStatus::PhyOff),
            5 => Ok(DramChannelStatus::ReadEye),
            6 => Ok(DramChannelStatus::BistEye),
            7 => Ok(DramChannelStatus::CaDebug),
            _ => Err(()),
        }
    }
}

#[derive(Clone, Debug)]
pub enum DramInitError {
    NotTrained(DramChannelStatus),
}

impl fmt::Display for DramInitError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            DramInitError::NotTrained(_) => f.write_str("DRAM was not able to train"),
        }
    }
}

#[derive(Clone, Debug, Error)]
pub enum CpuInitError {
    // NOTE: Mockup for BH prep
}

/// The final initialization status for a component within a chip.
/// This status is not intended to drive the initialization state machine
/// instead it gives a single high level view of the current status of a single component.
/// The NotInitialized and InitError types have their own specializations to so the caller only has
/// to match against the component type if absolutly necessary.
#[derive(Debug, Clone)]
pub enum WaitStatus<P, E> {
    NotPresent,
    Waiting(Option<String>),

    JustFinished,

    Done,
    /// This is used in the case where the user has specific that we shouldn't check to see if the
    /// compnent has actually been intialized.
    /// See noc_safe for an example of this enumeration being used.
    NoCheck,

    Timeout(std::time::Duration),
    NotInitialized(P),
    Error(E),
}

impl<P, E> WaitStatus<P, E> {
    pub fn is_done(&self) -> bool {
        match self {
            WaitStatus::Done => true,
            _ => false,
        }
    }
}

/// A generic structure which contains the status information for each component.
/// There is enough information here to determine the
#[derive(Debug, Clone)]
pub struct ComponentStatusInfo<P, E> {
    pub wait_status: Box<[WaitStatus<P, E>]>,
    pub timeout: std::time::Duration,
    pub start_time: std::time::Instant,
    pub name: String,
}

impl<P: fmt::Display, E: fmt::Display> fmt::Display for ComponentStatusInfo<P, E> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let mut waiting_count = 0;
        let mut completed_count = 0;
        for status in self.wait_status.iter() {
            if let WaitStatus::Waiting { .. } = status {
                waiting_count += 1;
            } else if let WaitStatus::NoCheck
            | WaitStatus::JustFinished
            | WaitStatus::Done
            | WaitStatus::NotPresent = status
            {
                completed_count += 1;
            }
        }

        let completed_init = waiting_count == 0;

        let message = if !completed_init {
            format!(
                "({}/{})",
                self.start_time.elapsed().as_secs(),
                self.timeout.as_secs()
            )
        } else {
            String::new()
        };

        let message = if self.wait_status.len() > 1 {
            format!("{message} [{}/{}]", completed_count, self.wait_status.len(),)
        } else {
            message
        };

        let message = format!("{message} {}", self.name);

        let mut message_options: Vec<(Vec<_>, String)> = Vec::with_capacity(self.wait_status.len());
        let mut force_oneline = true;
        for (index, status) in self.wait_status.iter().enumerate() {
            if let WaitStatus::Waiting(Some(status)) = status {
                if let Some(value) = message_options
                    .iter_mut()
                    .filter(|(_, v)| v == status)
                    .next()
                {
                    value.0.push(index);
                } else {
                    message_options.push((vec![index], status.clone()));
                }
            } else if let WaitStatus::Error(e) = status {
                let e = e.to_string();
                if let Some(value) = message_options.iter_mut().filter(|v| v.1 == e).next() {
                    value.0.push(index);
                } else {
                    message_options.push((vec![index], e));
                }
            } else if let WaitStatus::NotInitialized(e) = status {
                let e = e.to_string();
                if let Some(value) = message_options.iter_mut().filter(|v| v.1 == e).next() {
                    value.0.push(index);
                } else {
                    message_options.push((vec![index], e));
                }
            } else {
                force_oneline = false;
            }
        }

        let message = if message_options.len() == 1 && force_oneline {
            format!("{message}: {}", message_options[0].1)
        } else {
            let mut message = format!("{message}\n");
            for (indexes, option) in message_options {
                message = format!("\t{message}[");
                for index in indexes[..indexes.len().saturating_sub(1)].iter().copied() {
                    message = format!("{message}{index};");
                }
                if let Some(index) = indexes.last() {
                    message = format!("{message}{index}");
                }
                message = format!("{message}]: {option}\n");
            }

            message
        };

        f.write_str(message.as_str())
    }
}

impl<P, E> ComponentStatusInfo<P, E> {
    pub fn not_present(name: String) -> Self {
        Self {
            name,
            wait_status: Box::new([]),
            timeout: std::time::Duration::default(),
            start_time: std::time::Instant::now(),
        }
    }

    pub fn init_waiting(name: String, timeout: std::time::Duration, count: usize) -> Self {
        let wait_status = (0..count).map(|_| WaitStatus::Waiting(None)).collect();
        Self {
            name,
            wait_status,

            start_time: std::time::Instant::now(),
            timeout,
        }
    }

    pub fn is_waiting(&self) -> bool {
        for status in self.wait_status.iter() {
            match status {
                WaitStatus::Waiting(_) => {
                    return true;
                }

                WaitStatus::NotPresent
                | WaitStatus::JustFinished
                | WaitStatus::Done
                | WaitStatus::NotInitialized(_)
                | WaitStatus::NoCheck
                | WaitStatus::Timeout(_)
                | WaitStatus::Error(_) => {}
            }
        }

        false
    }

    pub fn is_present(&self) -> bool {
        for status in self.wait_status.iter() {
            match status {
                WaitStatus::Waiting(_)
                | WaitStatus::JustFinished
                | WaitStatus::Done
                | WaitStatus::NotInitialized(_)
                | WaitStatus::NoCheck
                | WaitStatus::Timeout(_)
                | WaitStatus::Error(_) => {
                    return true;
                }

                WaitStatus::NotPresent => {}
            }
        }

        return false;
    }

    pub fn has_error(&self) -> bool {
        for status in self.wait_status.iter() {
            match status {
                WaitStatus::Error(_) | WaitStatus::Timeout(_) | WaitStatus::NoCheck => {
                    return true;
                }

                WaitStatus::NotPresent
                | WaitStatus::JustFinished
                | WaitStatus::Done
                | WaitStatus::Waiting { .. }
                | WaitStatus::NotInitialized(_) => {}
            }
        }

        return false;
    }
}

#[derive(Clone, Debug, Default)]
pub struct InitOptions {
    /// If false, then we will not try to initialize anything that would require talking on the NOC
    pub noc_safe: bool,
}

#[derive(Clone, Debug)]
pub enum CommsStatus {
    CanCommunicate,
    CommunicationError(String),
}

impl CommsStatus {
    pub fn ok(&self) -> bool {
        match self {
            CommsStatus::CanCommunicate => true,
            CommsStatus::CommunicationError(_) => false,
        }
    }
}

#[derive(Clone, Debug)]
pub struct InitStatus {
    pub comms_status: CommsStatus,
    pub dram_status: ComponentStatusInfo<Infallible, DramInitError>,
    pub cpu_status: ComponentStatusInfo<Infallible, CpuInitError>,
    pub arc_status: ComponentStatusInfo<Infallible, ArcInitError>,
    pub eth_status: ComponentStatusInfo<EthernetPartialInitError, EthernetInitError>,

    pub init_options: InitOptions,

    /// We cannot communicate with the chip prior to the initialization process. Therefore we start
    /// with the chip in an unknown state (all status is marked as not present).
    pub unknown_state: bool,
}

impl InitStatus {
    pub fn new_unknown() -> Self {
        InitStatus {
            comms_status: CommsStatus::CommunicationError("Haven't checked".to_string()),
            dram_status: ComponentStatusInfo::not_present("DRAM".to_string()),
            cpu_status: ComponentStatusInfo::not_present("CPU".to_string()),
            arc_status: ComponentStatusInfo::not_present("ARC".to_string()),
            eth_status: ComponentStatusInfo::not_present("ETH".to_string()),
            init_options: InitOptions::default(),
            unknown_state: true,
        }
    }

    pub fn can_communicate(&self) -> bool {
        self.comms_status.ok()
    }

    pub fn is_waiting(&self) -> bool {
        self.arc_status.is_waiting()
            || self.dram_status.is_waiting()
            || self.eth_status.is_waiting()
            || self.cpu_status.is_waiting()
    }

    pub fn init_complete(&self) -> bool {
        !self.is_waiting()
    }

    pub fn has_error(&self) -> bool {
        !self.comms_status.ok()
            || self.arc_status.has_error()
            || self.dram_status.has_error()
            || self.eth_status.has_error()
            || self.cpu_status.has_error()
    }
}