summaryrefslogtreecommitdiff
path: root/riff/EraseArea.h
blob: d44e27ae8290b7ac11f3494b33b724359fb63908 (plain)
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
/*
 * EraseArea.h
 *
 * Copyright (C) ST-Ericsson SA 2011
 * Authors: Srimanta Panda <srimanta.panda@stericsson.com>,
 *          Ola Borgelin <ola.borgelin@stericsson.com>,
 *          Karin Hedlund <karin.hedlund@stericsson.com>,
 *          Markus Andersson <markus.m.andersson@stericsson.com> for ST-Ericsson.
 * License terms: 3-clause BSD license
 *
 */

/*
 * @addtogroup Commands
 * @{
 */

#pragma once
#include "DUT.h"
#include "Command.h"

namespace flash
{
/**
 * @brief Class implementing Erase Area command from Flash group.
 */
class EraseArea : public Command
{
public:
    /**
     * @brief Constructor initializing command parameters.
     *
     * @param[in] path          - Path to the device to erase.
     * @param[in] start         - Start of the erase relative to the start of the device.
     * @param[in] length        - 1 = use bulk protocol.
     */
    EraseArea(const char* path, uint64 start, uint64 length);

    /**
     * @brief Method that executes the erase process.
     *
     * @param[in] dut - Specific DUT instance on which to execute the command.
     * @return int    - Command execution error (0 on success, non-0 otherwise).
     */
    int run(DUT* dut);

    const char * get_command_name();
private:
    Logger logger_;
    const char* pchPath;
    uint64 uiStart;
    uint64 uiLength;
};
}

/* @} */