6

What are lock bits in microcontrollers used for? Are they something specific to AVRs, or used more of a general concept in microcontrollers?

stevenvh
  • 145,145
  • 21
  • 455
  • 667
vicatcu
  • 22,499
  • 13
  • 79
  • 155

2 Answers2

15

Lock bits are used in a variety of microcontrollers, and are generally used to enforce hardware-level security of the code inside them (no readback of the flash is common, also sometimes referred to as 'code protect').

They're not 100% secure, but are generally good enough to keep 'honest people' out of your code. Enterprising hackers often find ways around the lock bits (glitching, fuzzing, and sometimes even making holes into specific parts of the IC to expose signal lines and transistors).

Take a look at sites like Flylogic Engineering to get a taste the level of sophistication out there when it comes to microcontroller security.

Adam Lawrence
  • 32,921
  • 3
  • 58
  • 110
1

"Lock bits" are used for protecting program and data memory (they are used with both the AT89 and AVR). They aren't unique to Atmel; Maxim uses them as well, in their secure 8051 products. Other manufacturers use similar protection techniques, but give them a different name.

Leon Heller
  • 38,774
  • 2
  • 60
  • 96