target/nds32: rename CamelCase symbols 42/6342/2
authorAntonio Borneo <borneo.antonio@gmail.com>
Sun, 6 Jun 2021 15:48:48 +0000 (17:48 +0200)
committerAntonio Borneo <borneo.antonio@gmail.com>
Tue, 20 Jul 2021 13:53:12 +0000 (14:53 +0100)
Change-Id: I4619eb47cd051f52e60a3fdbc49aaf71e13a81e2
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/6342
Tested-by: jenkins
Reviewed-by: Marc Schink <dev@zapb.de>
Reviewed-by: Xiang W <wxjstz@126.com>
src/target/nds32.c
src/target/nds32.h
src/target/nds32_tlb.c
src/target/nds32_tlb.h

index d524fc288df65fab10d7f2cc3617410f0cbb4ce9..39d2c0067556e7a0cbde261b3f4561132f47e210 100644 (file)
@@ -1134,7 +1134,7 @@ static void nds32_init_config(struct nds32 *nds32)
        misc_config->div_instruction = (value_cr4 >> 5) & 0x1;
        misc_config->mac_instruction = (value_cr4 >> 6) & 0x1;
        misc_config->audio_isa = (value_cr4 >> 7) & 0x3;
-       misc_config->L2_cache = (value_cr4 >> 9) & 0x1;
+       misc_config->l2_cache = (value_cr4 >> 9) & 0x1;
        misc_config->reduce_register = (value_cr4 >> 10) & 0x1;
        misc_config->addr_24 = (value_cr4 >> 11) & 0x1;
        misc_config->interruption_level = (value_cr4 >> 12) & 0x1;
index 3670fd28911c79e9ef78ecde43ea3b24bb8ec9e4..e9b9ee194c23f71dd1661896e3f053acb274a3e2 100644 (file)
@@ -217,7 +217,7 @@ struct nds32_misc_config {
        bool div_instruction;
        bool mac_instruction;
        int audio_isa;
-       bool L2_cache;
+       bool l2_cache;
        bool reduce_register;
        bool addr_24;
        bool interruption_level;
index 93a9241091e0eff912240192da8d605cf374d346..81734e0c1dbf59eaab2a259f0dd3576a1d7554fc 100644 (file)
@@ -44,34 +44,34 @@ int nds32_walk_page_table(struct nds32 *nds32, const target_addr_t virtual_addre
        struct target *target = nds32->target;
        uint32_t value_mr1;
        uint32_t load_address;
-       uint32_t L1_page_table_entry;
-       uint32_t L2_page_table_entry;
+       uint32_t l1_page_table_entry;
+       uint32_t l2_page_table_entry;
        uint32_t page_size_index = nds32->mmu_config.default_min_page_size;
        struct page_table_walker_info_s *page_table_info_p =
                &(page_table_info[page_size_index]);
 
        /* Read L1 Physical Page Table */
        nds32_get_mapped_reg(nds32, MR1, &value_mr1);
-       load_address = (value_mr1 & page_table_info_p->L1_base_mask) |
-               ((virtual_address & page_table_info_p->L1_offset_mask) >>
-                page_table_info_p->L1_offset_shift);
+       load_address = (value_mr1 & page_table_info_p->l1_base_mask) |
+               ((virtual_address & page_table_info_p->l1_offset_mask) >>
+                page_table_info_p->l1_offset_shift);
        /* load_address is physical address */
-       nds32_read_buffer(target, load_address, 4, (uint8_t *)&L1_page_table_entry);
+       nds32_read_buffer(target, load_address, 4, (uint8_t *)&l1_page_table_entry);
 
        /* Read L2 Physical Page Table */
-       if (L1_page_table_entry & 0x1) /* L1_PTE not present */
+       if (l1_page_table_entry & 0x1) /* L1_PTE not present */
                return ERROR_FAIL;
 
-       load_address = (L1_page_table_entry & page_table_info_p->L2_base_mask) |
-               ((virtual_address & page_table_info_p->L2_offset_mask) >>
-                page_table_info_p->L2_offset_shift);
+       load_address = (l1_page_table_entry & page_table_info_p->l2_base_mask) |
+               ((virtual_address & page_table_info_p->l2_offset_mask) >>
+                page_table_info_p->l2_offset_shift);
        /* load_address is physical address */
-       nds32_read_buffer(target, load_address, 4, (uint8_t *)&L2_page_table_entry);
+       nds32_read_buffer(target, load_address, 4, (uint8_t *)&l2_page_table_entry);
 
-       if ((L2_page_table_entry & 0x1) != 0x1) /* L2_PTE not valid */
+       if ((l2_page_table_entry & 0x1) != 0x1) /* L2_PTE not valid */
                return ERROR_FAIL;
 
-       *physical_address = (L2_page_table_entry & page_table_info_p->ppn_mask) |
+       *physical_address = (l2_page_table_entry & page_table_info_p->ppn_mask) |
                (virtual_address & page_table_info_p->va_offset_mask);
 
        return ERROR_OK;
index 62512c11140dd92d6b9fe38d3d00aa22a02fa798..c22ed7335ec101d8cdae1268f69d4d92efcf6b7f 100644 (file)
@@ -29,13 +29,13 @@ enum {
 
 struct page_table_walker_info_s {
 
-       uint32_t L1_offset_mask;
-       uint32_t L1_offset_shift;
-       uint32_t L2_offset_mask;
-       uint32_t L2_offset_shift;
+       uint32_t l1_offset_mask;
+       uint32_t l1_offset_shift;
+       uint32_t l2_offset_mask;
+       uint32_t l2_offset_shift;
        uint32_t va_offset_mask;
-       uint32_t L1_base_mask;
-       uint32_t L2_base_mask;
+       uint32_t l1_base_mask;
+       uint32_t l2_base_mask;
        uint32_t ppn_mask;
 };
 

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)